| Home >> All >> org >> [ odmg Javadoc ] |
Source code: org/odmg/ClassNotPersistenceCapableException.java
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 9 public class ClassNotPersistenceCapableException extends ODMGRuntimeException 10 { 11 12 /** 13 * Construct an instance of the exception. 14 */ 15 public ClassNotPersistenceCapableException() 16 { 17 super(); 18 } 19 20 /** 21 * Construct an instance of the exception. 22 * @param msg A string providing a description of the exception. 23 */ 24 public ClassNotPersistenceCapableException(String msg) 25 { 26 super(msg); 27 } 28 }