resource-registry-api/src/main/java/org/gcube/informationsystem/resourceregistry/api/exceptions/relations/consistsof/ConsistsOfNotFoundException...

28 lines
685 B
Java

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