パッケージ org.springframework.beans

クラス NullValueInNestedPathException

実装されたすべてのインターフェース:
SerializableSE

public class NullValueInNestedPathException extends InvalidPropertyException
有効なネストされたプロパティパスのナビゲーションが NullPointerException に遭遇した場合にスローされる例外。

例: ターゲットオブジェクトの配偶者プロパティの値が null であるため、"spouse.age" のナビゲートが失敗する可能性があります。

作成者:
Rod Johnson, Juergen Hoeller
関連事項:
  • コンストラクターの詳細

    • NullValueInNestedPathException

      public NullValueInNestedPathException(ClassSE<?> beanClass, StringSE propertyName)
      新しい NullValueInNestedPathException を作成します。
      パラメーター:
      beanClass - 問題のある Bean クラス
      propertyName - 問題のあるプロパティ
    • NullValueInNestedPathException

      public NullValueInNestedPathException(ClassSE<?> beanClass, StringSE propertyName, StringSE msg)
      新しい NullValueInNestedPathException を作成します。
      パラメーター:
      beanClass - 問題のある Bean クラス
      propertyName - 問題のあるプロパティ
      msg - 詳細メッセージ
    • NullValueInNestedPathException

      public NullValueInNestedPathException(ClassSE<?> beanClass, StringSE propertyName, StringSE msg, ThrowableSE cause)
      新しい NullValueInNestedPathException を作成します。
      パラメーター:
      beanClass - 問題のある Bean クラス
      propertyName - 問題のあるプロパティ
      msg - 詳細メッセージ
      cause - 根本原因
      導入:
      4.3.2