resource-registry-api/src/main/java/org/gcube/informationsystem/resourceregistry/api/exceptions/contexts/ContextNotFoundException.java

28 lines
635 B
Java

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