1 package org.odmg;
2
3
4
5
6
7 /**
8
9 * This exception is thrown when deleting an object that is not persistent.
10
11 * @author David Jordan (as Java Editor of the Object Data Management Group)
12
13 * @version ODMG 3.0
14
15 */
16
17
18
19 public class ObjectNotPersistentException extends ODMGRuntimeException
20
21 {
22
23
24
25 /**
26
27 * Construct an instance of the exception.
28
29 */
30
31 public ObjectNotPersistentException()
32
33 {
34
35 super();
36
37 }
38
39
40
41 /**
42
43 * Construct an instance of the exception.
44
45 * @param msg A string providing a description of the exception.
46
47 */
48
49 public ObjectNotPersistentException(String msg)
50
51 {
52
53 super(msg);
54
55 }
56
57 }
58