| Home >> All >> org >> [ odmg Javadoc ] |
Source code: org/odmg/ObjectNotPersistentException.java
1 package org.odmg; 2 3 /** 4 * This exception is thrown when deleting an object that is not persistent. 5 * @author David Jordan (as Java Editor of the Object Data Management Group) 6 * @version ODMG 3.0 7 */ 8 9 public class ObjectNotPersistentException extends ODMGRuntimeException 10 { 11 12 /** 13 * Construct an instance of the exception. 14 */ 15 public ObjectNotPersistentException() 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 ObjectNotPersistentException(String msg) 25 { 26 super(msg); 27 } 28 }