1 package org.odmg;
2
3 /**
4 * This exception is thrown when the implementation cannot make an object persistent because of the type of the object.
5 * @author David Jordan (as Java Editor of the Object Data Management Group)
6 * @version ODMG 3.0
7 */
8 public class ClassNotPersistenceCapableException extends ODMGRuntimeException
9 {
10 public ClassNotPersistenceCapableException()
11 {
12 }
13
14 public ClassNotPersistenceCapableException(String msg)
15 {
16 super(msg);
17 }
18 }
19