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

28 lines
690 B
Java

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