Project

General

Profile

1 26600 sandro.lab
package eu.dnetlib.data.mdstore;
2
3
/**
4
 * General mdstore service exception.
5
 * @author claudio atzori
6
 * @version 1.0.0
7
 *
8
 */
9
public class MDStoreServiceException extends Exception {
10
11
	/**
12
	 *
13
	 */
14
	private static final long serialVersionUID = -6772977735282310658L;
15
16
	public MDStoreServiceException(String s, Throwable e) {
17
		super(s, e);
18
	}
19
20
	public MDStoreServiceException(String s) {
21
		super(s);
22
	}
23
24
	public MDStoreServiceException(Throwable e) {
25
		super(e);
26
	}
27
28
	public MDStoreServiceException() {
29
		super();
30
	}
31
32
}