001 package org.odmg;
002
003 /**
004 * This exception is thrown when the implementation cannot make an object persistent because of the type of the object.
005 * @author David Jordan (as Java Editor of the Object Data Management Group)
006 * @version ODMG 3.0
007 */
008 public class ClassNotPersistenceCapableException extends ODMGRuntimeException
009 {
010 public ClassNotPersistenceCapableException()
011 {
012 }
013
014 public ClassNotPersistenceCapableException(String msg)
015 {
016 super(msg);
017 }
018 }
019