01: package org.odmg;
02:
03: /**
04: * This is the base class for all RuntimeExceptions 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 ODMGRuntimeException extends RuntimeException {
10:
11: /**
12: * Construct an instance of the exception.
13: */
14: public ODMGRuntimeException() {
15: super ();
16: }
17:
18: /**
19: * Construct an instance of the exception with the specified message.
20: * @param msg The message associated with the exception.
21: */
22: public ODMGRuntimeException(String msg) {
23: super(msg);
24: }
25: }
|