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