package eu.dnetlib.openaire.directindex.api;

import eu.dnetlib.common.rmi.RMIException;

public class DirecIndexApiException extends RMIException {

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

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

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

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

}
