Commit cbc9c6a1 authored by nitram509's avatar nitram509

fixed 3 x typos in Exception messages

parent 8efa2fc5
...@@ -94,7 +94,7 @@ public class TomcatEmbeddedServletContainer implements EmbeddedServletContainer ...@@ -94,7 +94,7 @@ public class TomcatEmbeddedServletContainer implements EmbeddedServletContainer
} }
catch (Exception ex) { catch (Exception ex) {
throw new EmbeddedServletContainerException( throw new EmbeddedServletContainerException(
"Unable to start embdedded Tomcat", ex); "Unable to start embedded Tomcat", ex);
} }
} }
...@@ -109,7 +109,7 @@ public class TomcatEmbeddedServletContainer implements EmbeddedServletContainer ...@@ -109,7 +109,7 @@ public class TomcatEmbeddedServletContainer implements EmbeddedServletContainer
catch (Exception ex) { catch (Exception ex) {
this.logger.error("Cannot start connector: ", ex); this.logger.error("Cannot start connector: ", ex);
throw new EmbeddedServletContainerException( throw new EmbeddedServletContainerException(
"Unable to start embdedded Tomcat connectors", ex); "Unable to start embedded Tomcat connectors", ex);
} }
} }
} }
...@@ -127,7 +127,7 @@ public class TomcatEmbeddedServletContainer implements EmbeddedServletContainer ...@@ -127,7 +127,7 @@ public class TomcatEmbeddedServletContainer implements EmbeddedServletContainer
} }
catch (Exception ex) { catch (Exception ex) {
throw new EmbeddedServletContainerException( throw new EmbeddedServletContainerException(
"Unable to stop embdedded Tomcat", ex); "Unable to stop embedded Tomcat", ex);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment