01: package org.odmg;
02:
03: /**
04:
05: * This is the base class for all exceptions thrown by an ODMG implementation.
06:
07: * @author David Jordan (as Java Editor of the Object Data Management Group)
08:
09: * @version ODMG 3.0
10:
11: */
12:
13: public class ODMGException extends Exception
14:
15: {
16:
17: /**
18:
19: * Construct an <code>ODMGException</code> object without an error message.
20:
21: */
22:
23: public ODMGException()
24:
25: {
26:
27: super ();
28:
29: }
30:
31: /**
32:
33: * Construct an <code>ODMGException</code> object with an error message.
34:
35: * @param msg The error message associated with this exception.
36:
37: */
38:
39: public ODMGException(String msg)
40:
41: {
42:
43: super(msg);
44:
45: }
46:
47: }
|