Project

General

Profile

1
package eu.dnetlib.clients.index.client;
2

    
3
import eu.dnetlib.rmi.provision.IndexServiceException;
4

    
5
public class IndexClientException extends IndexServiceException {
6

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

    
12
	public IndexClientException() {
13
		super();
14
	}
15

    
16
	public IndexClientException(final String message) {
17
		super(message);
18
	}
19

    
20
	public IndexClientException(final Throwable cause) {
21
		super(cause);
22
	}
23

    
24
	public IndexClientException(final String message, final Throwable cause) {
25
		super(message, cause);
26
	}
27

    
28
}
(4-4/6)