package eu.dnetlib.rmi.soap.exceptions;

import javax.xml.ws.WebFault;

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

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

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

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

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