Project

General

Profile

1
package eu.dnetlib.exceptions;
2

    
3
public class DnetGenericException extends Exception {
4

    
5
	private static final long serialVersionUID = 1090811973592026796L;
6

    
7
	public DnetGenericException() {
8
		super();
9
	}
10

    
11
	public DnetGenericException(final String message, final Throwable cause) {
12
		super(message, cause);
13
	}
14

    
15
	public DnetGenericException(final String message) {
16
		super(message);
17
	}
18

    
19
	public DnetGenericException(final Throwable cause) {
20
		super(cause);
21
	}
22

    
23
}
(1-1/3)