Package org.iban4j

Class BicFormatException

All Implemented Interfaces:
Serializable

public class BicFormatException extends Iban4jException
Thrown to indicate that the application has attempted to convert a string to Bic or to validate Bic's string representation, but the string does not have the appropriate format.
See Also:
  • Constructor Details

    • BicFormatException

      public BicFormatException()
      Constructs a BicFormatException with no detail message.
    • BicFormatException

      public BicFormatException(String s)
      Constructs a BicFormatException with the specified detail message.
      Parameters:
      s - the detail message.
    • BicFormatException

      public BicFormatException(String s, Throwable t)
      Constructs a BicFormatException with the specified detail message and cause.
      Parameters:
      s - the detail message.
      t - the cause.
    • BicFormatException

      public BicFormatException(BicFormatException.BicFormatViolation violation, Object actual, Object expected, String s)
      Constructs a BicFormatException with the specified violation, actual value, expected value and detail message.
      Parameters:
      violation - the violation.
      actual - the actual value.
      expected - the expected value.
      s - the detail message.
    • BicFormatException

      public BicFormatException(BicFormatException.BicFormatViolation violation, String s)
      Constructs a BicFormatException with the specified violation and detail message.
      Parameters:
      violation - the violation.
      s - the detail message.
    • BicFormatException

      public BicFormatException(BicFormatException.BicFormatViolation violation, Object actual, String s)
      Constructs a BicFormatException with the specified violation, actual value and detail message.
      Parameters:
      violation - the violation.
      actual - the actual value.
      s - the detail message.
    • BicFormatException

      public BicFormatException(Throwable t)
      Constructs a BicFormatException with the specified cause.
      Parameters:
      t - the cause.
  • Method Details