ckan-util-library/src/main/java/org/gcube/datacatalogue/ckanutillibrary/exceptions/NoCKanRuntimeResourceExcept...

25 lines
605 B
Java

package org.gcube.datacatalogue.ckanutillibrary.exceptions;
/**
* No elasticsearch cluster in the infrastructure found exception.
* @author Costantino Perciante at ISTI-CNR
* (costantino.perciante@isti.cnr.it)
*
*/
public class NoCKanRuntimeResourceException extends Exception {
private static final long serialVersionUID = -40748130477807648L;
private static final String DEFAULT_MESSAGE = "No CKan catalogue instance for this scope!";
public NoCKanRuntimeResourceException(){
super(DEFAULT_MESSAGE);
}
public NoCKanRuntimeResourceException(String message) {
super(message);
}
}