Class ValidationException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ValidationException
    extends java.lang.Exception
    Exception class for a validation error. The stored message may be a resource reference, which will be resolved at a later time when needed.
    Author:
    Garret Wilson
    See Also:
    Resources.createStringResourceReference(String), Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ValidationException()
      Constructs a new exception with null as its detail message.
      ValidationException​(java.lang.String message)
      Constructs a new exception with the specified detail message.
      ValidationException​(java.lang.String message, java.lang.Object value)
      Constructs a new exception with the specified detail message and value object.
      ValidationException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      ValidationException​(java.lang.String message, java.lang.Throwable cause, java.lang.Object value)
      Constructs a new exception with the specified detail message, cause, and value object.
      ValidationException​(java.lang.Throwable cause)
      Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()).
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object getValue()  
      • 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
    • Constructor Detail

      • ValidationException

        public ValidationException()
        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).
      • ValidationException

        public ValidationException​(java.lang.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.
      • ValidationException

        public ValidationException​(java.lang.String message,
                                   java.lang.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 validated, which may be of any type, or null if the value being validated is not available.
      • ValidationException

        public ValidationException​(java.lang.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.
      • ValidationException

        public ValidationException​(java.lang.String message,
                                   java.lang.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.
      • ValidationException

        public ValidationException​(java.lang.String message,
                                   java.lang.Throwable cause,
                                   java.lang.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 validated, which may be of any type, or null if the value being validated is not available.
    • Method Detail

      • getValue

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