Project

General

Profile

Download (766 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
import java.net.URISyntaxException;
12

    
13
/**
14
 * @author andreas
15
 * @date Aug 29, 2011
16
 *
17
 */
18
public class TestConfigurationException extends Exception {
19

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

    
28
	/**
29
	 * @param string
30
	 */
31
	public TestConfigurationException(String message) {
32
		super(message);
33
	}
34

    
35
	/**
36
	 *
37
	 */
38
	private static final long serialVersionUID = 1265655528811777837L;
39

    
40
}
(7-7/7)