package eu.dnetlib.data.transformation;

import eu.dnetlib.common.interfaces.ws.ServiceException;

public class TransformationServiceException extends ServiceException{
	

	
	/**
	 * 
	 */
	private static final long serialVersionUID = 2394235443141678055L;

	public TransformationServiceException(Throwable e){
		super(e);
	}
	
	public TransformationServiceException(String msg, Throwable e){
		super(msg, e);
	}
	
	public TransformationServiceException(String msg){
		super(msg);
	}

}
