Project

General

Profile

1
package eu.dnetlib.openaire.exporter.funders;
2

    
3
public class FundersApiException extends Exception {
4

    
5
	public FundersApiException() {
6
	}
7

    
8
	public FundersApiException(final String message) {
9
		super(message);
10
	}
11

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

    
16
	public FundersApiException(final Throwable cause) {
17
		super(cause);
18
	}
19
}
(4-4/4)