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