package eu.dnetlib.rmi.soap.exceptions;

import javax.xml.ws.WebFault;

@WebFault(name = "DownloadServiceException", targetNamespace = "http://services.dnetlib.eu/")
public class DownloadServiceException extends DnetSoapException {

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

	public DownloadServiceException(final String string) {
		super(string);
	}

	public DownloadServiceException(final String string, final Throwable exception) {
		super(string, exception);
	}

	public DownloadServiceException(final Throwable exception) {
		super(exception);
	}
}
