Project

General

Profile

1
package eu.dnetlib.rmi.provision;
2

    
3
public class IndexServiceException extends Exception {
4

    
5
	private static final long serialVersionUID = 8330264706967294512L;
6

    
7
	public IndexServiceException() {
8
		super();
9
	}
10

    
11
	public IndexServiceException(String message, Throwable cause) {
12
		super(message, cause);
13
	}
14

    
15
	public IndexServiceException(String message) {
16
		super(message);
17
	}
18

    
19
	public IndexServiceException(Throwable cause) {
20
		super(cause);
21
	}
22

    
23
}
(4-4/8)