Project

General

Profile

1
/**
2
 * 
3
 */
4
package eu.dnetlib.data.collective.transformation;
5

    
6
/**
7
 * @author jochen
8
 *
9
 */
10
public class TransformationException extends Exception {
11

    
12
	/**
13
	 * 
14
	 */
15
	public TransformationException() {
16
		// TODO Auto-generated constructor stub
17
	}
18

    
19
	/**
20
	 * @param message
21
	 */
22
	public TransformationException(String message) {
23
		super(message);
24
		// TODO Auto-generated constructor stub
25
	}
26

    
27
	/**
28
	 * @param cause
29
	 */
30
	public TransformationException(Throwable cause) {
31
		super(cause);
32
		// TODO Auto-generated constructor stub
33
	}
34

    
35
	/**
36
	 * @param message
37
	 * @param cause
38
	 */
39
	public TransformationException(String message, Throwable cause) {
40
		super(message, cause);
41
		// TODO Auto-generated constructor stub
42
	}
43

    
44
}
(2-2/5)