package eu.dnetlib.rmi.soap.exceptions;

import javax.xml.ws.WebFault;

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

	/**
	 * 
	 */
	private static final long serialVersionUID = -165056337086508889L;

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

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

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

}
