1 16 17 21 22 package javax.jdo; 23 24 28 public class JDOUserException extends JDOCanRetryException { 29 30 33 public JDOUserException() { 34 } 35 36 37 41 public JDOUserException(String msg) { 42 super(msg); 43 } 44 45 51 public JDOUserException(String msg, Throwable [] nested) { 52 super(msg, nested); 53 } 54 55 61 public JDOUserException(String msg, Throwable nested) { 62 super(msg, nested); 63 } 64 65 70 public JDOUserException(String msg, Object failed) { 71 super(msg, failed); 72 } 73 74 80 public JDOUserException(String msg, Throwable [] nested, Object failed) { 81 super(msg, nested, failed); 82 } 83 84 90 public JDOUserException(String msg, Throwable nested, Object failed) { 91 super(msg, nested, failed); 92 } 93 } 94 95 | Popular Tags |