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

27 lines
642 B
Java

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