package eu.dnetlib.data.multimap.rmi;

import eu.dnetlib.common.rmi.RMIException;

public class MultiMapServiceException extends RMIException {

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

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

	public MultiMapServiceException(Throwable exception) {
		super(exception);
	}

}
