storagehub-model/src/main/java/org/gcube/common/storagehub/model/exceptions/PluginNotFoundException.java

30 lines
449 B
Java

package org.gcube.common.storagehub.model.exceptions;
public class PluginNotFoundException extends StorageHubException {
/**
*
*/
private static final long serialVersionUID = 1L;
public PluginNotFoundException() {
super();
}
public PluginNotFoundException(String message) {
super(message);
}
@Override
public String getErrorMessage() {
return "plugin not found";
}
@Override
public int getStatus() {
return 500;
}
}