1 23 24 29 30 package com.sun.jdo.api.persistence.support; 31 32 37 public class JDOCanRetryException extends JDOException { 38 39 42 public JDOCanRetryException() { 43 } 44 45 46 50 public JDOCanRetryException(String msg) { 51 super(msg); 52 } 53 54 59 public JDOCanRetryException(String msg, Exception nested) { 60 super(msg, nested); 61 } 62 63 68 public JDOCanRetryException(String msg, Object [] failed) { 69 super(msg, failed); 70 } 71 72 78 public JDOCanRetryException(String msg, Exception nested, Object [] failed) { 79 super(msg, nested, failed); 80 } 81 } 82 83 | Popular Tags |