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

28 lines
690 B
Java
Raw Normal View History

2021-10-25 10:59:11 +02:00
package org.gcube.informationsystem.resourceregistry.api.exceptions.relations.isrelatedto;
2021-10-25 10:59:11 +02:00
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);
}
}