org.springframework.beans
Class ConversionNotSupportedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.beans.BeansException
org.springframework.beans.PropertyAccessException
org.springframework.beans.TypeMismatchException
org.springframework.beans.ConversionNotSupportedException
- All Implemented Interfaces:
- Serializable, ErrorCoded
public class ConversionNotSupportedException
- extends TypeMismatchException
Exception thrown when no suitable editor or converter can be found for a bean property.
- Since:
- 3.0
- Author:
- Arjen Poutsma, Juergen Hoeller
- See Also:
- Serialized Form
ConversionNotSupportedException
public ConversionNotSupportedException(PropertyChangeEvent propertyChangeEvent,
Class requiredType,
Throwable cause)
- Create a new ConversionNotSupportedException.
- Parameters:
propertyChangeEvent
- the PropertyChangeEvent that resulted in the problemrequiredType
- the required target type (or null
if not known)cause
- the root cause (may be null
)
ConversionNotSupportedException
public ConversionNotSupportedException(Object value,
Class requiredType,
Throwable cause)
- Create a new ConversionNotSupportedException.
- Parameters:
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
)