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 Summary
ConstructorsConstructorDescriptionConversionException(String message) Construct a new conversion exception.ConversionException(String message, Throwable cause) Construct a new conversion exception. - 
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
ConversionException
Construct a new conversion exception.- Parameters:
 message- the exception message
 - 
ConversionException
Construct a new conversion exception.- Parameters:
 message- the exception messagecause- the cause
 
 -