1 package org.odmg;
2
3
4
5 /**
6
7 * This is the base class for all exceptions associated with queries.
8
9 * @author David Jordan (as Java Editor of the Object Data Management Group)
10
11 * @version ODMG 3.0
12
13 */
14
15
16
17 public class QueryException extends ODMGException
18
19 {
20
21 /**
22
23 * Constructs an instance of the exception.
24
25 */
26
27 public QueryException()
28
29 {
30
31 super();
32
33 }
34
35
36
37 /**
38
39 * Constructs an instance of the exception with a message indicating the reason
40
41 * for the exception.
42
43 * @param msg A message indicating the reason for the exception.
44
45 */
46
47 public QueryException(String msg)
48
49 {
50
51 super(msg);
52
53 }
54
55 }
56