Project

General

Profile

1
package eu.dnetlib.api.functionality;
2

    
3
import eu.dnetlib.api.DriverServiceException;
4

    
5
public class ValidatorServiceException extends DriverServiceException {
6

    
7
	/**
8
	 * 
9
	 */
10
	private static final long serialVersionUID = 1L;
11

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

    
16
	public ValidatorServiceException(String message, Throwable cause) {
17
		super(message, cause);
18
	}
19

    
20
	public ValidatorServiceException(String message) {
21
		super(message);
22
	}
23

    
24
	public ValidatorServiceException(Throwable cause) {
25
		super(cause);
26
	}
27
}
(22-22/23)