Class ConversionException

    • Constructor Summary

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

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getMessage()  
      java.lang.Class<?> getSourceType()  
      java.lang.Class<?> getTargetType()  
      • 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

      • ConversionException

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

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

      • getSourceType

        public java.lang.Class<?> getSourceType()
      • getTargetType

        public java.lang.Class<?> getTargetType()
      • getMessage

        public java.lang.String getMessage()
        Overrides:
        getMessage in class java.lang.Throwable