Project

General

Profile

1
package eu.dnetlib.enabling.is.sn.rmi;
2

    
3
import eu.dnetlib.common.rmi.RMIException;
4

    
5
public class ISSNException extends RMIException {
6

    
7
	/**
8
	 * 
9
	 */
10
	private static final long serialVersionUID = -7384073901457430004L;
11

    
12
	public ISSNException(final Throwable e) {
13
		super(e);
14
	}
15

    
16
	public ISSNException(final String message) {
17
		super(message);
18
	}
19

    
20
	public ISSNException(final String message, final Throwable e) {
21
		super(message, e);
22
	}
23
	
24
}
(1-1/2)