All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.digitalcollections.iiif.hymir.model.exception.InvalidParametersException Maven / Gradle / Ivy

Go to download

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).

There is a newer version: 5.1.13
Show newest version
package de.digitalcollections.iiif.hymir.model.exception;

public class InvalidParametersException extends Exception {

  public InvalidParametersException() {
  }

  public InvalidParametersException(String message) {
    super(message);
  }

  public InvalidParametersException(Exception e) {
    super(e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy