Package org.apache.commons.validator
Class ValidatorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.validator.ValidatorException
-
- All Implemented Interfaces:
java.io.Serializable
public class ValidatorException extends java.lang.Exception
The base exception for the Validator Framework. All otherExceptions thrown during calls toValidator.validate()are considered errors.- See Also:
- Serialized Form
-
-
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.
-
-
-
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.
-
-