Project

General

Profile

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

    
3
import javax.xml.ws.WebFault;
4

    
5

    
6
/**
7
 * Thrown when a given document is not found.
8
 * 
9
 * @author marko
10
 *
11
 */
12
@WebFault
13
public class ISLookUpDocumentNotFoundException extends ISLookUpException {
14

    
15
	/**
16
	 * exception chain + message.
17
	 * 
18
	 * @param message message
19
	 * @param e 
20
	 */
21
	public ISLookUpDocumentNotFoundException(String message, Throwable e) {
22
		super(message, e);
23
	}
24

    
25
	/**
26
	 * exception chain constructor.
27
	 * @param e
28
	 */
29
	public ISLookUpDocumentNotFoundException(Throwable e) {
30
		super(e);
31
	}
32

    
33
	/**
34
	 * exception message.
35
	 * 
36
	 * @param message
37
	 */
38
	public ISLookUpDocumentNotFoundException(String message) {
39
		super(message);
40
	}
41

    
42
	/**
43
	 * 
44
	 */
45
	private static final long serialVersionUID = 2295995755165801937L;
46

    
47
}
(1-1/3)