01: package org.odmg;
02:
03: /**
04:
05: * This is the base class for all exceptions associated with queries.
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 QueryException extends ODMGException
14:
15: {
16:
17: /**
18:
19: * Constructs an instance of the exception.
20:
21: */
22:
23: public QueryException()
24:
25: {
26:
27: super ();
28:
29: }
30:
31: /**
32:
33: * Constructs an instance of the exception with a message indicating the reason
34:
35: * for the exception.
36:
37: * @param msg A message indicating the reason for the exception.
38:
39: */
40:
41: public QueryException(String msg)
42:
43: {
44:
45: super(msg);
46:
47: }
48:
49: }
|