Signed-off-by: Johnny Lim <izeye@naver.com>

See gh-45036
This commit is contained in:
Johnny Lim 2025-04-09 00:01:15 +09:00 committed by Phillip Webb
parent 2d3ccda335
commit 0dc0240c06
1 changed files with 2 additions and 1 deletions

View File

@ -130,7 +130,8 @@ class EmbeddedServerContainerInvocationContextProvider
return launcher;
}
catch (NoSuchMethodException ex) {
throw new IllegalStateException("Launcher class %s does not have an (Application, File) constructor");
throw new IllegalStateException(String
.format("Launcher class %s does not have an (Application, File) constructor", launcherClass.getName()));
}
}