1 16 17 21 22 package javax.jdo; 23 24 28 public class JDOFatalDataStoreException extends JDOFatalException { 29 30 33 public JDOFatalDataStoreException() { 34 } 35 36 37 41 public JDOFatalDataStoreException(String msg) { 42 super(msg); 43 } 44 45 50 public JDOFatalDataStoreException(String msg, Object failed) { 51 super(msg, failed); 52 } 53 54 60 public JDOFatalDataStoreException(String msg, Throwable [] nested) { 61 super(msg, nested); 62 } 63 64 70 public JDOFatalDataStoreException(String msg, Throwable nested) { 71 super(msg, nested); 72 } 73 } 74 75 | Popular Tags |