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