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

65 lines
1.4 KiB
Java
Raw Normal View History

/**
*
*/
package org.gcube.vremanagement.executor.exception;
import javax.xml.ws.WebFault;
import org.gcube.vremanagement.executor.exception.beans.ExceptionBean;
/**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/
*
*/
@WebFault
public class ExecutorException extends Exception {
/**
* Generated Serial Version UID
*/
private static final long serialVersionUID = 150353533672078736L;
private static final String DEFAULT_MESSAGE = "Executor Exception";
protected ExceptionBean faultInfo;
public ExecutorException() {
super(DEFAULT_MESSAGE);
this.faultInfo = new ExceptionBean(DEFAULT_MESSAGE);
}
public ExecutorException(Throwable cause) {
this(DEFAULT_MESSAGE, cause);
}
public ExecutorException(String message) {
super(message);
this.faultInfo = new ExceptionBean(message);
}
public ExecutorException(ExceptionBean faultInfo){
super(faultInfo.getMessage(), faultInfo.getCause());
this.faultInfo = faultInfo;
}
public ExecutorException(String message, Throwable cause){
super(message, cause);
this.faultInfo = new ExceptionBean(message, cause);
}
public ExecutorException(String message, ExceptionBean faultInfo){
super(message);
this.faultInfo = faultInfo;
}
public ExecutorException(String message, ExceptionBean faultInfo, Throwable cause){
super(message, cause);
this.faultInfo = faultInfo;
}
public ExceptionBean getFaultInfo(){
return faultInfo;
}
}