1 16 17 21 22 package javax.jdo; 23 24 30 public class JDOObjectNotFoundException extends JDODataStoreException { 31 32 36 public JDOObjectNotFoundException() { 37 } 38 39 40 45 public JDOObjectNotFoundException(String msg) { 46 super(msg); 47 } 48 49 54 public JDOObjectNotFoundException(String msg, Object failed) { 55 super(msg, failed); 56 } 57 58 64 public JDOObjectNotFoundException(String msg, Throwable [] nested) { 65 super(msg, nested); 66 } 67 68 } 69 70 | Popular Tags |