Class ConversionExecutorNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.binding.convert.ConversionException
org.springframework.binding.convert.ConversionExecutorNotFoundException
- All Implemented Interfaces:
Serializable
Thrown when a conversion executor could not be found in a conversion service.
- Author:
- Keith Donald
- See Also:
-
Constructor Summary
ConstructorDescriptionConversionExecutorNotFoundException
(Class<?> sourceClass, Class<?> targetClass, String message) Creates a new conversion executor not found exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConversionExecutorNotFoundException
public ConversionExecutorNotFoundException(Class<?> sourceClass, Class<?> targetClass, String message) Creates a new conversion executor not found exception.- Parameters:
sourceClass
- the source type requested to convert fromtargetClass
- the target type requested to convert tomessage
- a descriptive message
-
-
Method Details
-
getSourceClass
Returns the source type requested to convert from. -
getTargetClass
Returns the target type requested to convert to.
-