package eu.dnetlib.data.dedup.rmi;

import eu.dnetlib.common.rmi.RMIException;

/**
 * The Class DeduplicationServiceException.
 */
public class DeduplicationServiceException extends RMIException {

	/** The Constant serialVersionUID. */
	private static final long serialVersionUID = 7523999812098059764L;

	/**
	 * Instantiates a new deduplication service exception.
	 *
	 * @param string
	 *            the string
	 */
	public DeduplicationServiceException(final String string) {
		super(string);
	}

	/**
	 * Instantiates a new deduplication service exception.
	 *
	 * @param string
	 *            the string
	 * @param exception
	 *            the exception
	 */
	public DeduplicationServiceException(final String string, final Throwable exception) {
		super(string, exception);
	}

	/**
	 * Instantiates a new deduplication service exception.
	 *
	 * @param exception
	 *            the exception
	 */
	public DeduplicationServiceException(final Throwable exception) {
		super(exception);
	}

}
