Project

General

Profile

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