01: package org.odmg;
02:
03: /**
04: * This exception is thrown when the type of a query parameter
05: * is not compatible with the expected type.
06: * @author David Jordan (as Java Editor of the Object Data Management Group)
07: * @version ODMG 3.0
08: */
09:
10: public class QueryParameterTypeInvalidException extends QueryException {
11: /**
12: * Construct an instance of the exception.
13: */
14: public QueryParameterTypeInvalidException() {
15: super ();
16: }
17:
18: /**
19: * Construct an instance of the exception with a message.
20: * @param msg The message explaining details of the exception.
21: */
22: public QueryParameterTypeInvalidException(String msg) {
23: super(msg);
24: }
25: }
|