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