org.apache.catalina
クラス LifecycleException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.apache.catalina.LifecycleException
すべての実装インタフェース:
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.

バージョン:
$Revision: 1.3 $ $Date: 2001/07/22 20:13:30 $
作成者:
Craig R. McClanahan
関連項目:
直列化された形式

フィールドの概要
protected  java.lang.String message
          The error message passed to our constructor (if any)
protected  java.lang.Throwable throwable
          The underlying exception or error passed to our constructor (if any)
 
コンストラクタの概要
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.
 
メソッドの概要
 java.lang.String getMessage()
          Returns the message associated with this exception, if any.
 java.lang.Throwable getThrowable()
          Returns the throwable that caused this exception, if any.
 java.lang.String toString()
          Return a formatted string that describes this exception.
 
クラス java.lang.Throwable から継承したメソッド
fillInStackTrace, getLocalizedMessage, printStackTrace, printStackTrace, printStackTrace
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

フィールドの詳細

message

protected java.lang.String message
The error message passed to our constructor (if any)

throwable

protected java.lang.Throwable throwable
The underlying exception or error passed to our constructor (if any)
コンストラクタの詳細

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.
パラメータ:
message - Message describing this exception

LifecycleException

public LifecycleException(java.lang.Throwable throwable)
Construct a new LifecycleException for the specified throwable.
パラメータ:
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.
パラメータ:
message - Message describing this exception
throwable - Throwable that caused this exception
メソッドの詳細

getMessage

public java.lang.String getMessage()
Returns the message associated with this exception, if any.
オーバーライド:
クラス java.lang.Throwable 内の getMessage

getThrowable

public java.lang.Throwable getThrowable()
Returns the throwable that caused this exception, if any.

toString

public java.lang.String toString()
Return a formatted string that describes this exception.
オーバーライド:
クラス java.lang.Throwable 内の toString


Copyright ? 2000-2001 Apache Software Foundation. All Rights Reserved.