Project

General

Profile

1 27673 sandro.lab
package eu.dnetlib.data.mdstore;
2
3 27678 sandro.lab
public class DocumentNotFoundException extends MDStoreServiceException {
4 27673 sandro.lab
5
	/**
6
	 *
7
	 */
8
	private static final long serialVersionUID = 5188036989114250548L;
9
10 27678 sandro.lab
	public DocumentNotFoundException(final String s, final Throwable e) {
11 27673 sandro.lab
		super(s, e);
12
	}
13
14 27678 sandro.lab
	public DocumentNotFoundException(final String s) {
15 27673 sandro.lab
		super(s);
16
	}
17
18 27678 sandro.lab
	public DocumentNotFoundException(final Throwable e) {
19 27673 sandro.lab
		super(e);
20
	}
21
22 27678 sandro.lab
	public DocumentNotFoundException() {
23 27673 sandro.lab
		super();
24
	}
25
26
}