1 16 17 21 22 package javax.jdo; 23 24 31 public class JDOOptimisticVerificationException extends JDOFatalDataStoreException { 32 33 36 public JDOOptimisticVerificationException() { 37 } 38 39 40 44 public JDOOptimisticVerificationException(String msg) { 45 super(msg); 46 } 47 48 53 public JDOOptimisticVerificationException(String msg, Object failed) { 54 super(msg, failed); 55 } 56 57 63 public JDOOptimisticVerificationException(String msg, Throwable [] nested) { 64 super(msg, nested); 65 } 66 67 } 68 69 | Popular Tags |