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

28 lines
720 B
Java

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