Project

General

Profile

1 26600 sandro.lab
package eu.dnetlib.enabling.is.registry.rmi;
2
3
import eu.dnetlib.common.rmi.RMIException;
4
5
public class ISRegistryException extends RMIException {
6
7
	/**
8
	 *
9
	 */
10
	private static final long serialVersionUID = -3347405941287624771L;
11
12
	public ISRegistryException(Throwable e) {
13
		super(e);
14
	}
15
16
	public ISRegistryException(String string) {
17
		super(string);
18
	}
19
20
	public ISRegistryException(String string, Throwable e) {
21
		super(string, e);
22
	}
23
24
}