Class ConversionException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConversionException
    extends java.lang.RuntimeException

    A ConversionException indicates that a call to Converter.convert() has failed to complete successfully.

    Since:
    1.3
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.Throwable cause
      Deprecated.
      Use Throwable.getCause()}.
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      ConversionException​(java.lang.String message)
      Constructs a new exception with the specified message.
      ConversionException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the specified message and root cause.
      ConversionException​(java.lang.Throwable cause)
      Constructs a new exception with the specified root cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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
    • Field Detail

      • cause

        @Deprecated
        protected java.lang.Throwable cause
        Deprecated.
        Use Throwable.getCause()}.
        The cause, deprecated.
    • Constructor Detail

      • ConversionException

        public ConversionException​(java.lang.String message)
        Constructs a new exception with the specified message.
        Parameters:
        message - The message describing this exception
      • ConversionException

        public ConversionException​(java.lang.String message,
                                   java.lang.Throwable cause)
        Constructs a new exception with the specified message and root cause.
        Parameters:
        message - The message describing this exception
        cause - The root cause of this exception
      • ConversionException

        public ConversionException​(java.lang.Throwable cause)
        Constructs a new exception with the specified root cause.
        Parameters:
        cause - The root cause of this exception