Coverage Report - org.odmg.QueryParameterTypeInvalidException
 
Classes in this File Line Coverage Branch Coverage Complexity
QueryParameterTypeInvalidException
N/A
N/A
1
 
 1  
 package org.odmg;
 2  
 
 3  
 
 4  
 
 5  
 /**
 6  
 
 7  
  * This exception is thrown when the type of a query parameter
 8  
 
 9  
  * is not compatible with the expected type.
 10  
 
 11  
  * @author        David Jordan (as Java Editor of the Object Data Management Group)
 12  
 
 13  
  * @version ODMG 3.0
 14  
 
 15  
  */
 16  
 
 17  
 
 18  
 
 19  
 public class QueryParameterTypeInvalidException extends QueryException
 20  
 
 21  
 {
 22  
 
 23  
     /**
 24  
 
 25  
      * Construct an instance of the exception.
 26  
 
 27  
      */
 28  
 
 29  
     public QueryParameterTypeInvalidException()
 30  
 
 31  
     {
 32  
 
 33  
         super();
 34  
 
 35  
     }
 36  
 
 37  
 
 38  
 
 39  
     /**
 40  
 
 41  
      * Construct an instance of the exception with a message.
 42  
 
 43  
      *        @param        msg        The message explaining details of the exception.
 44  
 
 45  
      */
 46  
 
 47  
     public QueryParameterTypeInvalidException(String msg)
 48  
 
 49  
     {
 50  
 
 51  
         super(msg);
 52  
 
 53  
     }
 54  
 
 55  
 }
 56