01: /**
02: *
03: */package org.enhydra.dm.api.exceptions;
04:
05: /**
06: * Basic exception class type for all specific exception types.
07: *
08: * @author Slobodan Vujasinovic
09: */
10: public class BaseException extends Exception {
11:
12: /**
13: * default constructor
14: */
15: public BaseException() {
16:
17: }
18:
19: /**
20: * @param arg0
21: */
22: public BaseException(String arg0) {
23: super (arg0);
24:
25: }
26:
27: /**
28: * @param arg0
29: */
30: public BaseException(Throwable arg0) {
31: super (arg0);
32:
33: }
34:
35: /**
36: * @param arg0
37: * @param arg1
38: */
39: public BaseException(String arg0, Throwable arg1) {
40: super(arg0, arg1);
41:
42: }
43:
44: }
|