no.unit.nva.model.exceptions.InvalidUnconfirmedSeriesException 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 InvalidUnconfirmedSeriesException extends Exception {
public static final String ERROR_MESSAGE = "The series defines a seriesTitle string and an unconfirmed "
+ "series object that have different values. These values should either match, "
+ "or the seriesTitle should be removed.";
public InvalidUnconfirmedSeriesException() {
super(ERROR_MESSAGE);
}
}