Class ValidatorException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ValidatorException
    extends java.lang.Exception
    The base exception for the Validator Framework. All other Exceptions thrown during calls to Validator.validate() are considered errors.
    Version:
    $Revision: 1649191 $
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      ValidatorException()
      Constructs an Exception with no specified detail message.
      ValidatorException​(java.lang.String message)
      Constructs an Exception with the specified detail message.
    • 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
    • Constructor Detail

      • ValidatorException

        public ValidatorException()
        Constructs an Exception with no specified detail message.
      • ValidatorException

        public ValidatorException​(java.lang.String message)
        Constructs an Exception with the specified detail message.
        Parameters:
        message - The error message.