no.unit.nva.model.exceptions.InvalidIssnException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nva-datamodel-java Show documentation
Show all versions of nva-datamodel-java Show documentation
The java version of the NVA datamodel
package no.unit.nva.model.exceptions;
public class InvalidIssnException extends Exception {
public static final String MESSAGE_TEMPLATE = "The ISSN \"%s\" is invalid";
public InvalidIssnException(String issn) {
super(String.format(MESSAGE_TEMPLATE, issn));
}
}