package eu.dnetlib.rmi.soap.exceptions;

import javax.xml.ws.WebFault;

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

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

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

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

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

}
