mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-24 18:29:03 +00:00
Fix error messages
Closes gh-4265
This commit is contained in:
committed by
Stephane Nicoll
parent
84728c44c3
commit
a1e210f578
+2
-2
@@ -330,7 +330,7 @@ public class TomcatEmbeddedServletContainerFactory
|
||||
}
|
||||
catch (FileNotFoundException ex) {
|
||||
throw new EmbeddedServletContainerException(
|
||||
"Could load key store: " + ex.getMessage(), ex);
|
||||
"Could not load key store: " + ex.getMessage(), ex);
|
||||
}
|
||||
if (ssl.getKeyStoreType() != null) {
|
||||
protocol.setKeystoreType(ssl.getKeyStoreType());
|
||||
@@ -348,7 +348,7 @@ public class TomcatEmbeddedServletContainerFactory
|
||||
}
|
||||
catch (FileNotFoundException ex) {
|
||||
throw new EmbeddedServletContainerException(
|
||||
"Could load trust store: " + ex.getMessage(), ex);
|
||||
"Could not load trust store: " + ex.getMessage(), ex);
|
||||
}
|
||||
}
|
||||
protocol.setTruststorePass(ssl.getTrustStorePassword());
|
||||
|
||||
Reference in New Issue
Block a user