Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
cbc9c6a1
Commit
cbc9c6a1
authored
Nov 24, 2013
by
nitram509
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed 3 x typos in Exception messages
parent
8efa2fc5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
TomcatEmbeddedServletContainer.java
...ntext/embedded/tomcat/TomcatEmbeddedServletContainer.java
+3
-3
No files found.
spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/TomcatEmbeddedServletContainer.java
View file @
cbc9c6a1
...
@@ -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 emb
d
edded 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 emb
d
edded 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 emb
d
edded Tomcat"
,
ex
);
"Unable to stop embedded Tomcat"
,
ex
);
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment