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

27 lines
550 B
Java

package org.gcube.informationsystem.resourceregistry.api.exceptions.context;
/**
* @author Luca Frosini (ISTI - CNR)
*
*/
public class ContextNotFoundException extends ContextException {
/**
* 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);
}
}