package eu.dnetlib.rmi.soap.exceptions;

import javax.xml.ws.WebFault;

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

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

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

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

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