Project

General

Profile

1
package eu.dnetlib.common.rmi;
2

    
3
/**
4
 * 
5
 * All RMI exception thrown from the service remote method invocation interfaces inherit this class
6
 * 
7
 * @author marko
8
 * 
9
 */
10
abstract public class RMIException extends Exception { // NOPMD
11

    
12
	/**
13
	 * 
14
	 */
15
	private static final long serialVersionUID = 428841258652765265L;
16

    
17
	public RMIException(final Throwable exception) {
18
		super(exception);
19
	}
20

    
21
	public RMIException(final String string) {
22
		super(string);
23
	}
24
	
25
	public RMIException(final String string, final Throwable exception) {
26
		super(string, exception);
27
	}
28
}
(3-3/4)