1 16 17 21 22 package javax.jdo; 23 24 32 public class JDONullIdentityException extends JDOUserException { 33 34 37 public JDONullIdentityException() { 38 } 39 40 44 public JDONullIdentityException(String msg) { 45 super(msg); 46 } 47 48 53 public JDONullIdentityException(String msg, Object failed) { 54 super(msg, failed); 55 } 56 57 63 public JDONullIdentityException(String msg, Throwable [] nested) { 64 super(msg, nested); 65 } 66 67 73 public JDONullIdentityException(String msg, Throwable nested) { 74 super(msg, nested); 75 } 76 77 } 78 | Popular Tags |