| Home >> All >> org >> [ odmg Javadoc ] |
Source code: org/odmg/QueryParameterTypeInvalidException.java
1 package org.odmg; 2 3 /** 4 * This exception is thrown when the type of a query parameter 5 * is not compatible with the expected type. 6 * @author David Jordan (as Java Editor of the Object Data Management Group) 7 * @version ODMG 3.0 8 */ 9 10 public class QueryParameterTypeInvalidException extends QueryException 11 { 12 /** 13 * Construct an instance of the exception. 14 */ 15 public QueryParameterTypeInvalidException() 16 { 17 super(); 18 } 19 20 /** 21 * Construct an instance of the exception with a message. 22 * @param msg The message explaining details of the exception. 23 */ 24 public QueryParameterTypeInvalidException(String msg) 25 { 26 super(msg); 27 } 28 }