de.schegge.bank.UnsupportedCountryCodeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bank-account-validator Show documentation
Show all versions of bank-account-validator Show documentation
Validation Annotations for IBAN and BIC
The newest version!
package de.schegge.bank;
public class UnsupportedCountryCodeException extends IllegalArgumentException {
public UnsupportedCountryCodeException(String country) {
super(String.valueOf(country));
}
}