All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.jakaarl.iban.InvalidIbanException Maven / Gradle / Ivy

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy