Project

General

Profile

1
package eu.dnetlib.rmi.data;
2

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

    
5
public class TransformationServiceException extends RMIException {
6

    
7
	private static final long serialVersionUID = 6186153317305098215L;
8

    
9
	public TransformationServiceException(String string) {
10
		super(string);
11
	}
12

    
13
	public TransformationServiceException(String string, Throwable exception) {
14
		super(string, exception);
15
	}
16

    
17
	public TransformationServiceException(Throwable exception) {
18
		super(exception);
19
	}
20

    
21
}
(42-42/42)