Package org.apache.catalina
Class LifecycleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.catalina.LifecycleException
-
- All Implemented Interfaces:
java.io.Serializable
public final class LifecycleException extends java.lang.Exception
General purpose exception that is thrown to indicate a lifecycle related problem. Such exceptions should generally be considered fatal to the operation of the application containing this component.- Author:
- Craig R. McClanahan
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LifecycleException()
Construct a new LifecycleException with no other information.LifecycleException(java.lang.String message)
Construct a new LifecycleException for the specified message.LifecycleException(java.lang.String message, java.lang.Throwable throwable)
Construct a new LifecycleException for the specified message and throwable.LifecycleException(java.lang.Throwable throwable)
Construct a new LifecycleException for the specified throwable.
-
-
-
Constructor Detail
-
LifecycleException
public LifecycleException()
Construct a new LifecycleException with no other information.
-
LifecycleException
public LifecycleException(java.lang.String message)
Construct a new LifecycleException for the specified message.- Parameters:
message
- Message describing this exception
-
LifecycleException
public LifecycleException(java.lang.Throwable throwable)
Construct a new LifecycleException for the specified throwable.- Parameters:
throwable
- Throwable that caused this exception
-
LifecycleException
public LifecycleException(java.lang.String message, java.lang.Throwable throwable)
Construct a new LifecycleException for the specified message and throwable.- Parameters:
message
- Message describing this exceptionthrowable
- Throwable that caused this exception
-
-