Project

General

Profile

1
package eu.dnetlib.api;
2

    
3
public class DriverServiceException extends Exception {
4
	private static final long serialVersionUID = 1L;
5

    
6
	public DriverServiceException() {
7
		super();
8
	}
9

    
10
	public DriverServiceException(String message, Throwable cause) {
11
		super(message, cause);
12
	}
13

    
14
	public DriverServiceException(String message) {
15
		super(message);
16
	}
17

    
18
	public DriverServiceException(Throwable cause) {
19
		super(cause);
20
	}
21
}
(3-3/3)