1 16 17 21 22 package javax.jdo; 23 24 29 public class JDOUserCallbackException extends JDOUserException { 30 31 35 public JDOUserCallbackException() { 36 } 37 38 43 public JDOUserCallbackException(String msg) { 44 super(msg); 45 } 46 47 53 public JDOUserCallbackException(String msg, Throwable [] nested) { 54 super(msg, nested); 55 } 56 57 63 public JDOUserCallbackException(String msg, Throwable nested) { 64 super(msg, nested); 65 } 66 } 67 68 | Popular Tags |