Project

General

Profile

1
package eu.dnetlib.api.functionality;
2

    
3
import eu.dnetlib.api.DriverServiceException;
4

    
5
public class RecommendationServiceException extends DriverServiceException {
6
	
7
	private static final long serialVersionUID = 1L;
8

    
9
	public RecommendationServiceException() {
10
		super();
11
	}
12

    
13
	public RecommendationServiceException(String message, Throwable cause) {
14
		super(message, cause);
15
	}
16

    
17
	public RecommendationServiceException(String message) {
18
		super(message);
19
	}
20

    
21
	public RecommendationServiceException(Throwable cause) {
22
		super(cause);
23
	}
24
	
25
}
(18-18/23)