Class TomcatManagerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.codehaus.cargo.container.tomcat.internal.TomcatManagerException
-
- All Implemented Interfaces:
Serializable
public class TomcatManagerException extends Exception
Indicates an error received from Tomcat manager.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TomcatManagerException()
Creates a newManagerException
with no message or cause.TomcatManagerException(String message)
Creates a newManagerException
with the specified message and no cause.TomcatManagerException(String message, Throwable cause)
Creates a newManagerException
with the specified message and cause.TomcatManagerException(Throwable cause)
Creates a newManagerException
with no message and the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TomcatManagerException
public TomcatManagerException()
Creates a newManagerException
with no message or cause.
-
TomcatManagerException
public TomcatManagerException(String message)
Creates a newManagerException
with the specified message and no cause.- Parameters:
message
- the message for this exception
-
TomcatManagerException
public TomcatManagerException(Throwable cause)
Creates a newManagerException
with no message and the specified cause.- Parameters:
cause
- the cause of this exception
-
-