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

28 lines
685 B
Java

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