Project

General

Profile

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

    
12
import java.net.URISyntaxException;
13

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

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

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

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

    
41
}
(6-6/6)