resource-registry-api/src/main/java/org/gcube/informationsystem/resourceregistry/api/exceptions/types/SchemaNotFoundException.java

28 lines
631 B
Java

package org.gcube.informationsystem.resourceregistry.api.exceptions.types;
import org.gcube.informationsystem.resourceregistry.api.exceptions.NotFoundException;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public class SchemaNotFoundException extends NotFoundException {
/**
* Generated Serial Version UID
*/
private static final long serialVersionUID = -1441446827386524456L;
public SchemaNotFoundException(String message) {
super(message);
}
public SchemaNotFoundException(Throwable cause) {
super(cause);
}
public SchemaNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}