01: package org.odmg;
02:
03: /**
04: * This is the base class for all exceptions thrown by an ODMG implementation.
05: * @author David Jordan (as Java Editor of the Object Data Management Group)
06: * @version ODMG 3.0
07: */
08:
09: public class ODMGException extends Exception {
10: /**
11: * Construct an <code>ODMGException</code> object without an error message.
12: */
13: public ODMGException() {
14: super ();
15: }
16:
17: /**
18: * Construct an <code>ODMGException</code> object with an error message.
19: * @param msg The error message associated with this exception.
20: */
21:
22: public ODMGException(String msg) {
23: super(msg);
24: }
25: }
|