resource-registry-api/src/main/java/org/gcube/informationsystem/resourceregistry/api/exceptions/relations/RelationNotFoundException.java

28 lines
640 B
Java

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