01: package org.odmg;
02:
03: /**
04: * This exception is thrown when an implementation does not support an operation.
05: * @author David Jordan (as Java Editor of the Object Data Management Group)
06: * @version ODMG 3.0
07: */
08:
09: public class NotImplementedException extends ODMGRuntimeException {
10: /**
11: * Construct an instance of the exception.
12: */
13: public NotImplementedException() {
14: super ();
15: }
16:
17: /**
18: * Construct an instance of the exception.
19: * @param msg A string providing a description of the exception.
20: */
21: public NotImplementedException(String msg) {
22: super(msg);
23: }
24: }
|