Project

General

Profile

Download (556 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * 
3
 */
4
package eu.etaxonomy.cdm.model.common.init;
5

    
6
/**
7
 * @author AM
8
 *
9
 */
10
public class TermNotFoundException extends Exception {
11

    
12
	/**
13
	 * 
14
	 */
15
	public TermNotFoundException() {
16
		super();
17
	}
18

    
19
	/**
20
	 * @param arg0
21
	 */
22
	public TermNotFoundException(String arg0) {
23
		super(arg0);
24
	}
25

    
26
	/**
27
	 * @param arg0
28
	 */
29
	public TermNotFoundException(Throwable arg0) {
30
		super(arg0);
31
	}
32

    
33
	/**
34
	 * @param arg0
35
	 * @param arg1
36
	 */
37
	public TermNotFoundException(String arg0, Throwable arg1) {
38
		super(arg0, arg1);
39
	}
40

    
41
}
(4-4/4)