1 10 11 package com.triactive.jdo.store; 12 13 import javax.jdo.JDOUserException; 14 15 16 24 25 public class NoSuchPersistentFieldException extends JDOUserException 26 { 27 33 34 public NoSuchPersistentFieldException(Class clazz, String fieldName) 35 { 36 super("Field '" + fieldName + "' does not exist in " + clazz.getName() + " or is not persistent"); 37 } 38 39 40 46 47 public NoSuchPersistentFieldException(Class clazz, int fieldNumber) 48 { 49 super("Field #" + fieldNumber + " does not exist in " + clazz.getName() + " or is not persistent"); 50 } 51 } 52 | Popular Tags |