Project

General

Profile

1 29078 michele.ar
package eu.dnetlib.functionality.index.client;
2
3 29686 sandro.lab
import eu.dnetlib.data.provision.index.rmi.IndexServiceException;
4 29078 michele.ar
5 29686 sandro.lab
public class IndexClientException extends IndexServiceException {
6
7 29078 michele.ar
	/**
8 29686 sandro.lab
	 *
9 29078 michele.ar
	 */
10
	private static final long serialVersionUID = 1851955470714206331L;
11 29686 sandro.lab
12 29078 michele.ar
	public IndexClientException() {
13
		super();
14
	}
15
16 29686 sandro.lab
	public IndexClientException(final String message) {
17 29078 michele.ar
		super(message);
18
	}
19
20 29686 sandro.lab
	public IndexClientException(final Throwable cause) {
21 29078 michele.ar
		super(cause);
22
	}
23
24 29686 sandro.lab
	public IndexClientException(final String message, final Throwable cause) {
25 29078 michele.ar
		super(message, cause);
26
	}
27
28
}