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