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