Project

General

Profile

Download (761 Bytes) 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.io.common;
11

    
12
public class SourceConnectionException extends Exception {
13
	private static final long serialVersionUID = -3846939002083939654L;
14

    
15
	public SourceConnectionException() {
16
		super();
17
	}
18

    
19
	public SourceConnectionException(String message) {
20
		super(message);
21
	}
22

    
23
	public SourceConnectionException(String message, Throwable cause) {
24
		super(message, cause);
25
	}
26

    
27
	public SourceConnectionException(Throwable cause) {
28
		super(cause);
29
	}
30

    
31
}
(43-43/48)