Project

General

Profile

1
package eu.dnetlib.rmi.data;
2

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

    
5
public class CollectorServiceException extends RMIException {
6

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

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

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

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

    
24
}
(5-5/42)