クラス ConversionNotSupportedException
- 実装されたすべてのインターフェース:
SerializableSE
Bean プロパティに適したエディターまたはコンバーターが見つからない場合にスローされる例外。
- 導入:
- 3.0
- 作成者:
- Arjen Poutsma, Juergen Hoeller
- 関連事項:
フィールドサマリー
クラス org.springframework.beans.TypeMismatchException から継承されたフィールド
ERROR_CODE
コンストラクターのサマリー
コンストラクター説明ConversionNotSupportedException
(PropertyChangeEventSE propertyChangeEvent, ClassSE<?> requiredType, ThrowableSE cause) 新しい ConversionNotSupportedException を作成します。ConversionNotSupportedException
(ObjectSE value, ClassSE<?> requiredType, ThrowableSE cause) 新しい ConversionNotSupportedException を作成します。方法の概要
クラス org.springframework.beans.TypeMismatchException から継承されたメソッド
getErrorCode, getPropertyName, getRequiredType, getValue, initPropertyName
クラス org.springframework.beans.PropertyAccessException から継承されたメソッド
getPropertyChangeEvent
クラス org.springframework.core.NestedRuntimeException から継承されたメソッド
contains, getMostSpecificCause, getRootCause
クラス java.lang.ThrowableSE から継承されたメソッド
addSuppressedSE, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCauseSE, printStackTrace, printStackTraceSE, printStackTraceSE, setStackTraceSE, toString
コンストラクターの詳細
ConversionNotSupportedException
public ConversionNotSupportedException(PropertyChangeEventSE propertyChangeEvent, @Nullable ClassSE<?> requiredType, @Nullable ThrowableSE cause) 新しい ConversionNotSupportedException を作成します。- パラメーター:
propertyChangeEvent
- 問題の原因となった PropertyChangeEventrequiredType
- 必要なターゲット型 (または、不明の場合はnull
)cause
- 根本原因 (null
の場合があります)
ConversionNotSupportedException
public ConversionNotSupportedException(@Nullable ObjectSE value, @Nullable ClassSE<?> requiredType, @Nullable ThrowableSE cause) 新しい ConversionNotSupportedException を作成します。- パラメーター:
value
- 変換できなかった問題のある値 (null
の場合があります)requiredType
- 必要なターゲット型 (または、不明の場合はnull
)cause
- 根本原因 (null
の場合があります)