Project

General

Profile

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