Project

General

Profile

1
package eu.dnetlib.enabling.datasources.common;
2

    
3
public class DsmRuntimeException extends RuntimeException {
4

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

    
10
	public DsmRuntimeException(String msg) {
11
		super(msg);
12
	}
13

    
14
	public DsmRuntimeException(String msg, Throwable e) {
15
		super(msg, e);
16
	}
17

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

    
22
}
(15-15/20)