Package org.apache.commons.validator
Class ValidatorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.validator.ValidatorException
- All Implemented Interfaces:
Serializable
The base exception for the Validator Framework. All other
Exception
s thrown during calls to
Validator.validate()
are considered errors.- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an Exception with no specified detail message.ValidatorException
(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
-
Constructor Details
-
ValidatorException
public ValidatorException()Constructs an Exception with no specified detail message. -
ValidatorException
Constructs an Exception with the specified detail message.- Parameters:
message
- The error message.
-