shohaku.core.lang
クラス IntrospectionBeansException

java.lang.Object
  拡張java.lang.Throwable
      拡張java.lang.Exception
          拡張shohaku.core.lang.IntrospectionBeansException
すべての実装インタフェース:
java.io.Serializable

public class IntrospectionBeansException
extends java.lang.Exception

オブジェクトに対するイントロスペクション処理に失敗した場合に発生します。

SecurityException や NoSuchMethodException 等のイントロスペクション処理時に発生する例外の一般化された例外として定義されています。
例外の原因は可能な限り起因例外に含まれる事が要求されます。

関連項目:
直列化された形式

コンストラクタの概要
IntrospectionBeansException()
          デフォルトコンストラクタ。
IntrospectionBeansException(java.lang.String message)
          エラーメッセージを設定して初期化します。
IntrospectionBeansException(java.lang.String message, java.lang.Throwable cause)
          エラーメッセージと起因例外を設定して初期化します。
IntrospectionBeansException(java.lang.Throwable cause)
          起因例外を設定して初期化します。
 
クラス java.lang.Throwable から継承したメソッド
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

IntrospectionBeansException

public IntrospectionBeansException()
デフォルトコンストラクタ。


IntrospectionBeansException

public IntrospectionBeansException(java.lang.String message)
エラーメッセージを設定して初期化します。

パラメータ:
message - エラーメッセージ

IntrospectionBeansException

public IntrospectionBeansException(java.lang.Throwable cause)
起因例外を設定して初期化します。

パラメータ:
cause - 起因例外

IntrospectionBeansException

public IntrospectionBeansException(java.lang.String message,
                                   java.lang.Throwable cause)
エラーメッセージと起因例外を設定して初期化します。

パラメータ:
message - エラーメッセージ
cause - 起因例外