Merge branch '3.4.x'

Closes gh-45038
This commit is contained in:
Phillip Webb
2025-04-08 11:27:24 -07:00
5 changed files with 22 additions and 32 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()));
}
}