Project

General

Profile

Download (732 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2011 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
package eu.etaxonomy.dataportal;
10

    
11
/**
12
 * @author andreas
13
 * @since Aug 29, 2011
14
 *
15
 */
16
public class TestConfigurationException extends Exception {
17

    
18
	/**
19
	 * @param message
20
	 * @param e
21
	 */
22
	public TestConfigurationException(String message, Exception e) {
23
		super(message, e);
24
	}
25

    
26
	/**
27
	 * @param message
28
	 */
29
	public TestConfigurationException(String message) {
30
		super(message);
31
	}
32

    
33
	/**
34
	 *
35
	 */
36
	private static final long serialVersionUID = 1265655528811777837L;
37

    
38
}
(13-13/13)