no.unit.nva.model.exceptions.InvalidSeriesException 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 InvalidSeriesException extends RuntimeException {
public static final String MESSAGE = "The specified URI is not a valid series URI: %s";
public InvalidSeriesException(String seriesUri) {
super(String.format(MESSAGE,seriesUri));
}
}