Project

General

Profile

Download (1.02 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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.strategy.merge;
11

    
12
import org.apache.log4j.Logger;
13

    
14
/**
15
 * @author a.mueller
16
 * @created 03.08.2009
17
 * @version 1.0
18
 */
19
public class MergeException extends Exception {
20
	private static final long serialVersionUID = 4817603805690549936L;
21
	@SuppressWarnings("unused")
22
	private static final Logger logger = Logger.getLogger(MergeException.class);
23

    
24
	/**
25
	 * 
26
	 */
27
	public MergeException() {
28
	}
29

    
30
	/**
31
	 * @param message
32
	 */
33
	public MergeException(String message) {
34
		super(message);
35
	}
36

    
37
	/**
38
	 * @param cause
39
	 */
40
	public MergeException(Throwable cause) {
41
		super(cause);
42
	}
43

    
44
	/**
45
	 * @param message
46
	 * @param cause
47
	 */
48
	public MergeException(String message, Throwable cause) {
49
		super(message, cause);
50
	}
51
}
(6-6/7)