changes to table name changer and more generic base class and interface
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / database / DataSourceNotFoundException.java
1 /**
2 * Copyright (C) 2007 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.database;
11
12 import org.apache.log4j.Logger;
13
14 /**
15 * @author a.mueller
16 *
17 */
18 public class DataSourceNotFoundException extends Exception {
19 private static final long serialVersionUID = 5269129655671736295L;
20 @SuppressWarnings("unused")
21 private static final Logger logger = Logger.getLogger(DataSourceNotFoundException.class);
22
23 /**
24 * @param message
25 */
26 public DataSourceNotFoundException() {
27 super();
28 }
29
30 /**
31 * @param message
32 */
33 public DataSourceNotFoundException(String message) {
34 super(message);
35 }
36
37 /**
38 * @param cause
39 */
40 public DataSourceNotFoundException(Throwable cause) {
41 super(cause);
42 }
43
44 /**
45 * @param message
46 * @param cause
47 */
48 public DataSourceNotFoundException(String message, Throwable cause) {
49 super(message, cause);
50 }
51
52 }