separate Amplification and AmplificationResult.java #4541
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / database / update / DatabaseTypeNotSupportedException.java
1 /**
2 *
3 */
4 package eu.etaxonomy.cdm.database.update;
5
6 /**
7 * @author a.mueller
8 *
9 */
10 public class DatabaseTypeNotSupportedException extends Exception {
11 private static final long serialVersionUID = -6065181245886098240L;
12
13 /**
14 *
15 */
16 public DatabaseTypeNotSupportedException() {
17
18 }
19
20 /**
21 * @param arg0
22 */
23 public DatabaseTypeNotSupportedException(String arg0) {
24 super(arg0);
25 }
26
27 /**
28 * @param arg0
29 */
30 public DatabaseTypeNotSupportedException(Throwable arg0) {
31 super(arg0);
32 }
33
34 /**
35 * @param arg0
36 * @param arg1
37 */
38 public DatabaseTypeNotSupportedException(String arg0, Throwable arg1) {
39 super(arg0, arg1);
40 }
41
42 }