Project

General

Profile

1
package eu.dnetlib.enabling.is.registry;
2

    
3
import eu.dnetlib.enabling.is.registry.rmi.ISRegistryException;
4

    
5
public class ISRegistryDocumentNotFoundException extends ISRegistryException {
6

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

    
12
	public ISRegistryDocumentNotFoundException(String string, Throwable e) {
13
		super(string, e);
14
		// TODO Auto-generated constructor stub
15
	}
16

    
17
	public ISRegistryDocumentNotFoundException(String string) {
18
		super(string);
19
		// TODO Auto-generated constructor stub
20
	}
21

    
22
	public ISRegistryDocumentNotFoundException(Throwable e) {
23
		super(e);
24
		// TODO Auto-generated constructor stub
25
	}
26

    
27
}
    (1-1/1)