public class ConversionNotSupportedException extends TypeMismatchException
ERROR_CODE
Constructor and Description |
---|
ConversionNotSupportedException(java.lang.Object value,
java.lang.Class<?> requiredType,
java.lang.Throwable cause)
Create a new ConversionNotSupportedException.
|
ConversionNotSupportedException(java.beans.PropertyChangeEvent propertyChangeEvent,
java.lang.Class<?> requiredType,
java.lang.Throwable cause)
Create a new ConversionNotSupportedException.
|
getErrorCode, getPropertyName, getRequiredType, getValue, initPropertyName
getPropertyChangeEvent
contains, getMessage, getMostSpecificCause, getRootCause
public ConversionNotSupportedException(java.beans.PropertyChangeEvent propertyChangeEvent, @Nullable java.lang.Class<?> requiredType, @Nullable java.lang.Throwable cause)
propertyChangeEvent
- the PropertyChangeEvent that resulted in the problemrequiredType
- the required target type (or null
if not known)cause
- the root cause (may be null
)public ConversionNotSupportedException(@Nullable java.lang.Object value, @Nullable java.lang.Class<?> requiredType, @Nullable java.lang.Throwable cause)
value
- the offending value that couldn't be converted (may be null
)requiredType
- the required target type (or null
if not known)cause
- the root cause (may be null
)