Project

General

Profile

Download (1.01 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/ 
9

    
10
package eu.etaxonomy.cdm.model.common.init;
11

    
12
import org.apache.log4j.Logger;
13

    
14
/**
15
 * @author AM
16
 *
17
 */
18
public class TermNotFoundException extends Exception {
19
	private static final long serialVersionUID = 4288479011948189304L;
20
	@SuppressWarnings("unused")
21
	private static final Logger logger = Logger.getLogger(TermNotFoundException.class);
22
	
23
	
24
	/**
25
	 * 
26
	 */
27
	public TermNotFoundException() {
28
		super();
29
	}
30

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

    
38
	/**
39
	 * @param arg0
40
	 */
41
	public TermNotFoundException(Throwable arg0) {
42
		super(arg0);
43
	}
44

    
45
	/**
46
	 * @param arg0
47
	 * @param arg1
48
	 */
49
	public TermNotFoundException(String arg0, Throwable arg1) {
50
		super(arg0, arg1);
51
	}
52

    
53
}
(4-4/4)