01: package org.odmg;
02:
03: /**
04: * This is the base class for all exceptions associated with queries.
05: * @author David Jordan (as Java Editor of the Object Data Management Group)
06: * @version ODMG 3.0
07: */
08:
09: public class QueryException extends ODMGException {
10: /**
11: * Constructs an instance of the exception.
12: */
13: public QueryException() {
14: super ();
15: }
16:
17: /**
18: * Constructs an instance of the exception with a message indicating the reason
19: * for the exception.
20: * @param msg A message indicating the reason for the exception.
21: */
22: public QueryException(String msg) {
23: super(msg);
24: }
25: }
|