Package org.springframework.core.convert
Class ConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.core.convert.ConversionException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- ConversionFailedException,- ConverterNotFoundException
Base class for exceptions thrown by the conversion system.
- Since:
- 3.0
- Author:
- Keith Donald
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConversionException(String message) Construct a new conversion exception.ConversionException(String message, Throwable cause) Construct a new conversion exception.
- 
Method SummaryMethods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ConversionExceptionConstruct a new conversion exception.- Parameters:
- message- the exception message
 
- 
ConversionExceptionConstruct a new conversion exception.- Parameters:
- message- the exception message
- cause- the cause
 
 
-