io.github.jakaarl.iban.InvalidIbanException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iban-validator Show documentation
Show all versions of iban-validator Show documentation
A Java library for IBAN validation
The newest version!
package io.github.jakaarl.iban;
/**
* A runtime exception indicating an IBAN does not meet the minimal validity requirements.
*/
public class InvalidIbanException extends IllegalArgumentException {
private static final long serialVersionUID = 1L;
public InvalidIbanException(String message) {
super(message);
}
}