Class CheckDigitException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.validator.routines.checkdigit.CheckDigitException
-
- All Implemented Interfaces:
java.io.Serializable
public class CheckDigitException extends java.lang.Exception
Check Digit calculation/validation error.- Since:
- 1.4
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CheckDigitException()Constructs an Exception with no message.CheckDigitException(java.lang.String msg)Constructs an Exception with a message.CheckDigitException(java.lang.String msg, java.lang.Throwable cause)Constructs an Exception with a message and the underlying cause.
-
-
-
Constructor Detail
-
CheckDigitException
public CheckDigitException()
Constructs an Exception with no message.
-
CheckDigitException
public CheckDigitException(java.lang.String msg)
Constructs an Exception with a message.- Parameters:
msg- The error message.
-
CheckDigitException
public CheckDigitException(java.lang.String msg, java.lang.Throwable cause)
Constructs an Exception with a message and the underlying cause.- Parameters:
msg- The error message.cause- The underlying cause of the error
-
-