Project

General

Profile

1 49659 michele.ar
package eu.dnetlib.enabling.datasources.common;
2 44743 claudio.at
3 50209 claudio.at
public class DsmRuntimeException extends RuntimeException {
4 44743 claudio.at
5 49659 michele.ar
	/**
6 49996 claudio.at
	 *
7 49659 michele.ar
	 */
8
	private static final long serialVersionUID = 8980196353591772127L;
9
10 50209 claudio.at
	public DsmRuntimeException(String msg) {
11 44743 claudio.at
		super(msg);
12
	}
13 46718 claudio.at
14 50209 claudio.at
	public DsmRuntimeException(String msg, Throwable e) {
15 46718 claudio.at
		super(msg, e);
16
	}
17 49659 michele.ar
18 50209 claudio.at
	public DsmRuntimeException(Throwable e) {
19 49996 claudio.at
		super(e);
20 49659 michele.ar
	}
21
22 44743 claudio.at
}