01: package org.odmg;
02:
03: /**
04:
05: * This exception is thrown when accessing an object that was deleted.
06:
07: * @author David Jordan (as Java Editor of the Object Data Management Group)
08:
09: * @version ODMG 3.0
10:
11: */
12:
13: public class ObjectDeletedException extends ODMGRuntimeException
14:
15: {
16:
17: /**
18:
19: * Construct an instance of the exception.
20:
21: */
22:
23: public ObjectDeletedException()
24:
25: {
26:
27: super ();
28:
29: }
30:
31: /**
32:
33: * Construct an instance of the exception.
34:
35: * @param msg A string providing a description of the exception.
36:
37: */
38:
39: public ObjectDeletedException(String msg)
40:
41: {
42:
43: super(msg);
44:
45: }
46:
47: }
|