Project

General

Profile

Download (934 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2020 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 eu.etaxonomy.cdm.config.CdmSourceException;
12

    
13
/**
14
 * RuntimeException which is thrown in case of severe problems with the configured
15
 * CDM database which prevent the application from starting up. Other less severe problems
16
 * should be reported using {@link CdmSourceException}.
17
 *
18
 * @author a.kohlbecker
19
 * @date May 18, 2020
20
 *
21
 */
22
public class CdmDatabaseException extends RuntimeException {
23

    
24

    
25
    public CdmDatabaseException(String string) {
26
        super(string);
27
    }
28

    
29
    public CdmDatabaseException(String string, Throwable t) {
30
        super(string, t);
31
    }
32

    
33

    
34
    private static final long serialVersionUID = 1L;
35

    
36
}
(3-3/22)