Class ConversionUnsupportedException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConversionUnsupportedException
    extends ConversionException
    Thrown if a certain requested conversion is not supported, because no matching Conversion was found.
    Author:
    Rene Schneider - initial API and implementation
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ConversionUnsupportedException​(java.lang.Class<?> aSourceType, java.lang.Class<?> aTargetType, java.lang.String aMessage)
      Instantiates a new conversion unsupported exception.
      ConversionUnsupportedException​(java.lang.Class<?> aSourceType, java.lang.Class<?> aTargetType, java.lang.String aMessage, java.lang.Throwable aCause)
      Instantiates a new conversion unsupported exception.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getMessage()  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ConversionUnsupportedException

        public ConversionUnsupportedException​(java.lang.Class<?> aSourceType,
                                              java.lang.Class<?> aTargetType,
                                              java.lang.String aMessage,
                                              java.lang.Throwable aCause)
        Instantiates a new conversion unsupported exception.
        Parameters:
        aSourceType - the a source type
        aTargetType - the a target type
        aMessage - the a message
        aCause - the a cause
      • ConversionUnsupportedException

        public ConversionUnsupportedException​(java.lang.Class<?> aSourceType,
                                              java.lang.Class<?> aTargetType,
                                              java.lang.String aMessage)
        Instantiates a new conversion unsupported exception.
        Parameters:
        aSourceType - the a source type
        aTargetType - the a target type
        aMessage - the a message