Class TomcatServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.linecorp.armeria.server.tomcat.TomcatServiceException
- All Implemented Interfaces:
Serializable
public final class TomcatServiceException extends RuntimeException
A
RuntimeException
that is raised when configuring or starting an embedded Tomcat fails.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description TomcatServiceException()
Creates a new instance.TomcatServiceException(String message)
Creates a new instance with the specifiedmessage
.TomcatServiceException(String message, Throwable cause)
Creates a new instance with the specifiedmessage
andcause
.TomcatServiceException(Throwable cause)
Creates a new instance with the specifiedcause
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TomcatServiceException
public TomcatServiceException()Creates a new instance. -
TomcatServiceException
Creates a new instance with the specifiedmessage
. -
TomcatServiceException
Creates a new instance with the specifiedmessage
andcause
. -
TomcatServiceException
Creates a new instance with the specifiedcause
.
-