Class CheckDigitException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.validator.routines.checkdigit.CheckDigitException
- All Implemented Interfaces:
Serializable
Check Digit calculation/validation error.
- Since:
- Validator 1.4
- Version:
- $Revision: 1649191 $
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstruct an Exception with no message.Construct an Exception with a message.CheckDigitException
(String msg, Throwable cause) Construct an Exception with a message and the underlying cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
CheckDigitException
public CheckDigitException()Construct an Exception with no message. -
CheckDigitException
Construct an Exception with a message.- Parameters:
msg
- The error message.
-
CheckDigitException
Construct an Exception with a message and the underlying cause.- Parameters:
msg
- The error message.cause
- The underlying cause of the error
-