Browse Source

Polish

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

See gh-45036
pull/45151/head
Johnny Lim 10 months ago committed by Phillip Webb
parent
commit
0dc0240c06
  1. 3
      spring-boot-tests/spring-boot-integration-tests/spring-boot-server-tests/src/intTest/java/org/springframework/boot/context/embedded/EmbeddedServerContainerInvocationContextProvider.java

3
spring-boot-tests/spring-boot-integration-tests/spring-boot-server-tests/src/intTest/java/org/springframework/boot/context/embedded/EmbeddedServerContainerInvocationContextProvider.java

@ -130,7 +130,8 @@ class EmbeddedServerContainerInvocationContextProvider @@ -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()));
}
}

Loading…
Cancel
Save