de.digitalcollections.iiif.hymir.model.exception.ResolvingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iiif-server-hymir Show documentation
Show all versions of iiif-server-hymir Show documentation
Hymir is a Java based IIIF Server. It is based on "IIIF API Java Libraries" (Java implementations of the IIIF specifications, see https://github.com/dbmdz/iiif-apis).
package de.digitalcollections.iiif.hymir.model.exception;
public class ResolvingException extends Exception {
private static final long serialVersionUID = 1L;
public ResolvingException() {
super();
}
public ResolvingException(String message) {
super(message);
}
public ResolvingException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public ResolvingException(String message, Throwable cause) {
super(message, cause);
}
public ResolvingException(Throwable cause) {
super(cause);
}
}