Class ConversionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
io.guise.framework.converter.ConversionException
All Implemented Interfaces:
Serializable

public class ConversionException extends Exception
Exception representing a conversion error.
Author:
Garret Wilson
See Also:
  • Constructor Details

    • ConversionException

      public ConversionException()
      Constructs a new exception with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
    • ConversionException

      public ConversionException(String message)
      Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
      Parameters:
      message - The detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
    • ConversionException

      public ConversionException(String message, Object value)
      Constructs a new exception with the specified detail message and value object. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).
      Parameters:
      message - The detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
      value - The value being converted, which may be of any type, or null if the value being converted is not available.
    • ConversionException

      public ConversionException(Throwable cause)
      Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()).
      Parameters:
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method), or null if the cause is nonexistent or unknown.
    • ConversionException

      public ConversionException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method), or null if the cause is nonexistent or unknown.
    • ConversionException

      public ConversionException(String message, Throwable cause, Object value)
      Constructs a new exception with the specified detail message, cause, and value object.
      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method), or null if the cause is nonexistent or unknown.
      value - The value being converted, which may be of any type, or null if the value being converted is not available.
  • Method Details

    • getValue

      public Object getValue()
      Returns:
      The value being converted, which may be of any type, or null if the value being converted is not available.