Project

General

Profile

1
package eu.dnetlib.api.enabling;
2

    
3
import eu.dnetlib.api.DriverServiceException;
4

    
5
public class ISRegistryServiceException extends DriverServiceException {
6
	private static final long serialVersionUID = 4179398986751223317L;
7

    
8
	public ISRegistryServiceException(Throwable cause) {
9
		super(cause);
10
	}
11

    
12
	public ISRegistryServiceException() {
13
		super();
14
	}
15

    
16
	public ISRegistryServiceException(String message, Throwable cause) {
17
		super(message, cause);
18
	}
19
	
20
	public ISRegistryServiceException(String message) {
21
		super(message);
22
	}
23

    
24
}
(10-10/14)