Class CheckDigitException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.validator.routines.checkdigit.CheckDigitException
All Implemented Interfaces:
Serializable

public class CheckDigitException extends Exception
Check Digit calculation/validation error.
Since:
1.4
See Also:
  • Field Details

    • START_WITH_INVALID

      public static final String START_WITH_INVALID
      Common prefix for messages, f.i. "Invalid Code ...", "Invalid Character ..."
      See Also:
    • MISSING_CODE

      public static final String MISSING_CODE
      Common message text when code is Null or empty
      See Also:
    • ZERO_SUM

      public static final String ZERO_SUM
      Common message text when code sum is zero
      See Also:
  • Constructor Details

    • CheckDigitException

      public CheckDigitException()
      Constructs an Exception with no message.
    • CheckDigitException

      public CheckDigitException(String msg)
      Constructs an Exception with a message.
      Parameters:
      msg - The error message.
    • CheckDigitException

      public CheckDigitException(String msg, Throwable cause)
      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

      public static final String invalidCode(String code)
      Convenient message text "Invalid code [invalidCode]." with no additional information
      Parameters:
      code - the invalid code
      Returns:
      the message text
    • invalidCode

      public static final String invalidCode(String code, String detail)
      Convenient message text "Invalid code [invalidCode], additional information", f.i. Invalid code "", too short
      Parameters:
      code - the invalid code
      detail - optional additional information
      Returns:
      the message text
    • invalidCharacter

      public static final String invalidCharacter(String character)
      Convenient message text "Invalid Character [character]"
      Parameters:
      character - the invalid character string
      Returns:
      the message text
    • invalidCharacter

      public static final String invalidCharacter(char character)
      Convenient message text "Invalid Character [character]" without pos
      Parameters:
      character - the invalid character
      Returns:
      the message text
    • invalidCharacter

      public static final String invalidCharacter(char character, int atPos)
      Convenient message text "Invalid Character [character] at pos [atPos]"
      Parameters:
      character - the invalid character
      atPos - the position of the character in code
      Returns:
      the message text