1 16 17 21 22 package javax.jdo; 23 24 29 public class JDOFatalException extends JDOException { 30 31 34 public JDOFatalException() { 35 } 36 37 38 42 public JDOFatalException(String msg) { 43 super(msg); 44 } 45 46 52 public JDOFatalException(String msg, Throwable [] nested) { 53 super(msg, nested); 54 } 55 56 62 public JDOFatalException(String msg, Throwable nested) { 63 super(msg, nested); 64 } 65 66 71 public JDOFatalException(String msg, Object failed) { 72 super(msg, failed); 73 } 74 75 81 public JDOFatalException(String msg, Throwable [] nested, Object failed) { 82 super(msg, nested, failed); 83 84 } 85 91 public JDOFatalException(String msg, Throwable nested, Object failed) { 92 super(msg, nested, failed); 93 } 94 } 95 96 | Popular Tags |