exchange modifier classes by DefinedTerm, add termtype to csv files, make term loader...
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / database / DatabaseSchemaMismatchException.java
1 // $Id$
2 /**
3 * Copyright (C) 2009 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.cdm.database;
11
12 import org.apache.log4j.Logger;
13
14 /**
15 * @author e.-m.lee
16 * @date 12.01.2010
17 *
18 */
19 public class DatabaseSchemaMismatchException extends Exception {
20 private static final Logger logger = Logger.getLogger(DatabaseSchemaMismatchException.class);
21
22 /**
23 * @param message
24 */
25 public DatabaseSchemaMismatchException() {
26 super();
27 }
28
29 /**
30 * @param message
31 */
32 public DatabaseSchemaMismatchException(String message) {
33 super(message);
34 }
35
36 /**
37 * @param cause
38 */
39 public DatabaseSchemaMismatchException(Throwable cause) {
40 super(cause);
41 }
42
43 /**
44 * @param message
45 * @param cause
46 */
47 public DatabaseSchemaMismatchException(String message, Throwable cause) {
48 super(message, cause);
49 }
50
51 }