package eu.dnetlib.common.interfaces.ws;

/**
 * @author Jochen Schirrwagen (jochen.schirrwagen@uni-bielefeld.de)
 * ${revision}  ${date}  ${author}
 */
public class ServiceException extends Exception{
	
	
	
	static final long serialVersionUID = -2956816401361400449L;

	public ServiceException(){
		super();
	}
	
	public ServiceException(String errorMsg, Throwable throwable){
		super(errorMsg, throwable);
	}
	
	public ServiceException(String errorMsg){
		super(errorMsg);
	}

	public ServiceException(Throwable throwable){
		super(throwable);
	}
}
