Class ConversionExecutorNotFoundException

All Implemented Interfaces:
Serializable

public class ConversionExecutorNotFoundException extends ConversionException
Thrown when a conversion executor could not be found in a conversion service.
Author:
Keith Donald
See Also:
  • 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 from
      targetClass - the target type requested to convert to
      message - a descriptive message
  • Method Details

    • getSourceClass

      public Class<?> getSourceClass()
      Returns the source type requested to convert from.
    • getTargetClass

      public Class<?> getTargetClass()
      Returns the target type requested to convert to.