| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception org.apache.catalina.LifecycleException
LifecycleException | final public class LifecycleException extends Exception (Code) | | 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 version: $Revision: 467222 $ $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $ |
Method Summary | |
public String | getMessage() Returns the message associated with this exception, if any. | public Throwable | getThrowable() Returns the throwable that caused this exception, if any. | public String | toString() Return a formatted string that describes this exception. |
message | protected String message(Code) | | The error message passed to our constructor (if any)
|
throwable | protected Throwable throwable(Code) | | The underlying exception or error passed to our constructor (if any)
|
LifecycleException | public LifecycleException()(Code) | | Construct a new LifecycleException with no other information.
|
LifecycleException | public LifecycleException(String message)(Code) | | Construct a new LifecycleException for the specified message.
Parameters: message - Message describing this exception |
LifecycleException | public LifecycleException(Throwable throwable)(Code) | | Construct a new LifecycleException for the specified throwable.
Parameters: throwable - Throwable that caused this exception |
LifecycleException | public LifecycleException(String message, Throwable throwable)(Code) | | Construct a new LifecycleException for the specified message
and throwable.
Parameters: message - Message describing this exception Parameters: throwable - Throwable that caused this exception |
getMessage | public String getMessage()(Code) | | Returns the message associated with this exception, if any.
|
getThrowable | public Throwable getThrowable()(Code) | | Returns the throwable that caused this exception, if any.
|
toString | public String toString()(Code) | | Return a formatted string that describes this exception.
|
|
|
|