Project

General

Profile

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

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

    
12
	/**
13
	 * 
14
	 */
15
	private static final long serialVersionUID = -8648116731979859467L;
16

    
17
	/**
18
	 * 
19
	 */
20
	public ProcessingException() {
21
		super();
22
	}
23

    
24
	/**
25
	 * @param arg0
26
	 */
27
	public ProcessingException(String arg0) {
28
		super(arg0);
29
	}
30

    
31
	/**
32
	 * @param arg0
33
	 */
34
	public ProcessingException(Throwable arg0) {
35
		super(arg0);
36
	}
37

    
38
	/**
39
	 * @param arg0
40
	 * @param arg1
41
	 */
42
	public ProcessingException(String arg0, Throwable arg1) {
43
		super(arg0, arg1);
44
	}
45

    
46
}
(13-13/17)