Class ConversionException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConversionException
    extends java.lang.RuntimeException
    This Runtime Exception is thrown when an object is requested to be converted but the conversion cannot be done. For example when the String "test" is to be converted into a Long.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ConversionException​(java.lang.String message)
      Create a Conversion Exception with a message.
      ConversionException​(java.lang.String message, java.lang.Throwable cause)
      Create a Conversion Exception with a message and a nested 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

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

      • ConversionException

        public ConversionException​(java.lang.String message)
        Create a Conversion Exception with a message.
        Parameters:
        message - The message for this exception.
      • ConversionException

        public ConversionException​(java.lang.String message,
                                   java.lang.Throwable cause)
        Create a Conversion Exception with a message and a nested cause.
        Parameters:
        message - The message for this exception.
        cause - The causing exception.