1 10 11 package com.triactive.jdo.store; 12 13 import javax.jdo.JDOUserException; 14 15 16 27 28 public class IncompatibleQueryElementTypeException extends JDOUserException 29 { 30 36 37 public IncompatibleQueryElementTypeException(Class expectedType, Class actualType) 38 { 39 super("Incompatible query element type: was " + actualType.getName() + ", must be " + expectedType.getName() + " or a subclass thereof"); 40 } 41 } 42 | Popular Tags |