Project

General

Profile

1
package eu.dnetlib.openaire.directindex.api;
2

    
3
import eu.dnetlib.common.rmi.RMIException;
4

    
5
public class DirecIndexApiException extends RMIException {
6

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

    
12
	public DirecIndexApiException(final String string) {
13
		super(string);
14
	}
15

    
16
	public DirecIndexApiException(final String string, final Throwable exception) {
17
		super(string, exception);
18
	}
19

    
20
	public DirecIndexApiException(final Throwable exception) {
21
		super(exception);
22
	}
23

    
24
}
(1-1/8)