smart-executor-api/src/main/java/org/gcube/vremanagement/executor/exception/PluginInstanceNotFoundExcep...

35 lines
753 B
Java

/**
*
*/
package org.gcube.vremanagement.executor.exception;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public class PluginInstanceNotFoundException extends ExecutorException {
/**
* Generated Serial Version UID
*/
private static final long serialVersionUID = -7609491801703267843L;
private static final String DEFAULT_MESSAGE = "The requested plugin instance does not exists";
public PluginInstanceNotFoundException() {
super(DEFAULT_MESSAGE);
}
public PluginInstanceNotFoundException(Throwable cause) {
this(DEFAULT_MESSAGE, cause);
}
public PluginInstanceNotFoundException(String message) {
super(message);
}
public PluginInstanceNotFoundException(String message, Throwable cause){
super(message, cause);
}
}