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: public class ODMGRuntimeException extends RuntimeException {
09: public ODMGRuntimeException() {
10: }
11:
12: public ODMGRuntimeException(String msg) {
13: super(msg);
14: }
15: }
|