Project

General

Profile

1
package eu.dnetlib.rmi.data;
2

    
3
/**
4
 * Signals that a metadata record cannot be found in a given MDStore.
5
 */
6
public class DocumentNotFoundException extends MDStoreServiceException {
7

    
8
	/**
9
	 * 
10
	 */
11
	private static final long serialVersionUID = 5188036989114250548L;
12

    
13
	public DocumentNotFoundException(final String s, final Throwable e) {
14
		super(s, e);
15
	}
16

    
17
	public DocumentNotFoundException(final String s) {
18
		super(s);
19
	}
20

    
21
	public DocumentNotFoundException(final Throwable e) {
22
		super(e);
23
	}
24

    
25
	public DocumentNotFoundException() {
26
		super();
27
	}
28

    
29
}
(13-13/40)