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

28 lines
631 B
Java
Raw Normal View History

2021-10-25 10:59:11 +02:00
package org.gcube.informationsystem.resourceregistry.api.exceptions.types;
2019-11-05 18:46:46 +01:00
import org.gcube.informationsystem.resourceregistry.api.exceptions.NotFoundException;
/**
* @author Luca Frosini (ISTI - CNR)
*/
2019-11-05 18:46:46 +01:00
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);
}
}