package eu.dnetlib.rmi.soap.exceptions;

import javax.xml.ws.WebFault;

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

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

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

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

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

}
