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:
- 1.4
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an Exception with no message.Constructs an Exception with a message.CheckDigitException
(String msg, Throwable cause) Constructs an Exception with a message and the underlying cause. -
Method Summary
Modifier and TypeMethodDescriptionstatic final String
invalidCharacter
(char character) Convenient message text "Invalid Character [character]" without posstatic final String
invalidCharacter
(char character, int atPos) Convenient message text "Invalid Character [character] at pos [atPos]"static final String
invalidCharacter
(String character) Convenient message text "Invalid Character [character]"static final String
invalidCode
(String code) Convenient message text "Invalid code [invalidCode]." with no additional informationstatic final String
invalidCode
(String code, String detail) Convenient message text "Invalid code [invalidCode], additional information", f.i.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
START_WITH_INVALID
Common prefix for messages, f.i. "Invalid Code ...", "Invalid Character ..."- See Also:
-
MISSING_CODE
Common message text when code is Null or empty- See Also:
-
ZERO_SUM
Common message text when code sum is zero- See Also:
-
-
Constructor Details
-
CheckDigitException
public CheckDigitException()Constructs an Exception with no message. -
CheckDigitException
Constructs an Exception with a message.- Parameters:
msg
- The error message.
-
CheckDigitException
Constructs an Exception with a message and the underlying cause.- Parameters:
msg
- The error message.cause
- The underlying cause of the error
-
-
Method Details
-
invalidCode
Convenient message text "Invalid code [invalidCode]." with no additional information- Parameters:
code
- the invalid code- Returns:
- the message text
-
invalidCode
Convenient message text "Invalid code [invalidCode], additional information", f.i. Invalid code "", too short- Parameters:
code
- the invalid codedetail
- optional additional information- Returns:
- the message text
-
invalidCharacter
Convenient message text "Invalid Character [character]"- Parameters:
character
- the invalid character string- Returns:
- the message text
-
invalidCharacter
Convenient message text "Invalid Character [character]" without pos- Parameters:
character
- the invalid character- Returns:
- the message text
-
invalidCharacter
Convenient message text "Invalid Character [character] at pos [atPos]"- Parameters:
character
- the invalid characteratPos
- the position of the character in code- Returns:
- the message text
-