org.apache.commons.logging
クラス LogConfigurationException

java.lang.Object
  拡張java.lang.Throwable
      拡張java.lang.Exception
          拡張java.lang.RuntimeException
              拡張org.apache.commons.logging.LogConfigurationException
すべての実装インタフェース:
Serializable

public class LogConfigurationException
extends RuntimeException

該当するファクトリメソッドにて適切な LogFactory または Log のインスタンスが生成出来なかったときにのみ投げられる例外です。

An exception that is thrown only if a suitable LogFactory or Log instance cannot be created by the corresponding factory methods.

バージョン:
$Revision: 1.3 $ $Date: 2004/04/08 12:23:16 $
作成者:
Craig R. McClanahan
関連項目:
直列化された形式
翻訳者:
日置 聡
校正者:
高橋 達男
翻訳状況:
校了

フィールドの概要
protected  Throwable cause
          この例外の原因(となった例外)。
 
クラス java.lang.RuntimeException から継承したフィールド
 
クラス java.lang.Throwable から継承したフィールド
 
コンストラクタの概要
LogConfigurationException()
          詳細メッセージを設定せずに、新たな例外を生成します。
LogConfigurationException(String message)
          詳細メッセージを設定し、新たな例外を生成します。
LogConfigurationException(String message, Throwable cause)
          詳細メッセージと原因(となった例外)を設定し、新たな例外を生成します。
LogConfigurationException(Throwable cause)
          原因(となった例外)とそこから得られた詳細メッセージを設定し、新たな例外を生成します。
 
メソッドの概要
 Throwable getCause()
          この例外の原因(となった例外)を返します(もしあれば)。
 
クラス java.lang.Throwable から継承したメソッド
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

フィールドの詳細

cause

protected Throwable cause
この例外の原因(となった例外)。
The underlying cause of this exception.

コンストラクタの詳細

LogConfigurationException

public LogConfigurationException()
詳細メッセージを設定せずに、新たな例外を生成します。
Construct a new exception with null as its detail message.


LogConfigurationException

public LogConfigurationException(String message)
詳細メッセージを設定し、新たな例外を生成します。
Construct a new exception with the specified detail message.

パラメータ:
message - 詳細メッセージ
message The detail message

LogConfigurationException

public LogConfigurationException(Throwable cause)
原因(となった例外)とそこから得られた詳細メッセージを設定し、新たな例外を生成します。
Construct a new exception with the specified cause and a derived detail message.

パラメータ:
cause - 原因となった例外
cause The underlying cause

LogConfigurationException

public LogConfigurationException(String message,
                                 Throwable cause)
詳細メッセージと原因(となった例外)を設定し、新たな例外を生成します。
Construct a new exception with the specified detail message and cause.

パラメータ:
message - 詳細メッセージ
message The detail message
cause - 原因となった例外
cause The underlying cause
メソッドの詳細

getCause

public Throwable getCause()
この例外の原因(となった例外)を返します(もしあれば)。
Return the underlying cause of this exception (if any).



このドキュメントは、Ja-Jakartaにより訳されました。 コメントがある場合は report@jajakarta.orgまでお願いします。
Translated into Japanese by jajakarta.org. The original page is here.
Copyright (c) 2002-2003 - Apache Software Foundation