package eu.dnetlib.data.harvesting;

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


public class HarvestingServiceException extends ServiceException {


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

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