Project

General

Profile

Download (1.03 KB) 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
package eu.etaxonomy.cdm.database;
10

    
11
import org.apache.log4j.Logger;
12

    
13
/**
14
 * @author e.-m.lee
15
 * @since 12.01.2010
16
 *
17
 */
18
public class DatabaseSchemaMismatchException extends Exception {
19
	private static final Logger logger = Logger.getLogger(DatabaseSchemaMismatchException.class);
20
	
21
	/**
22
	 * @param message
23
	 */
24
	public DatabaseSchemaMismatchException() {
25
		super();
26
	}
27
	
28
	/**
29
	 * @param message
30
	 */
31
	public DatabaseSchemaMismatchException(String message) {
32
		super(message);
33
	}
34

    
35
	/**
36
	 * @param cause
37
	 */
38
	public DatabaseSchemaMismatchException(Throwable cause) {
39
		super(cause);
40
	}
41

    
42
	/**
43
	 * @param message
44
	 * @param cause
45
	 */
46
	public DatabaseSchemaMismatchException(String message, Throwable cause) {
47
		super(message, cause);
48
	}
49

    
50
}
(8-8/20)