KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > odmg > ClassNotPersistenceCapableException


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 JavaDoc msg)
15     {
16         super(msg);
17     }
18 }
19
20
Popular Tags