Project

General

Profile

1
package eu.dnetlib.data.mdstore;
2

    
3
public class DocumentNotFoundException extends MDStoreServiceException {
4

    
5
	/**
6
	 * 
7
	 */
8
	private static final long serialVersionUID = 5188036989114250548L;
9

    
10
	public DocumentNotFoundException(final String s, final Throwable e) {
11
		super(s, e);
12
	}
13

    
14
	public DocumentNotFoundException(final String s) {
15
		super(s);
16
	}
17

    
18
	public DocumentNotFoundException(final Throwable e) {
19
		super(e);
20
	}
21

    
22
	public DocumentNotFoundException() {
23
		super();
24
	}
25

    
26
}
(1-1/3)