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:
- java.io.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
Constructor Summary |
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. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
ConversionNotSupportedException
public ConversionNotSupportedException(java.beans.PropertyChangeEvent propertyChangeEvent,
java.lang.Class requiredType,
java.lang.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(java.lang.Object value,
java.lang.Class requiredType,
java.lang.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
)