1 23 24 29 30 package com.sun.jdo.api.persistence.support; 31 32 38 public class JDODuplicateObjectIdException extends JDOUserException 39 { 40 43 public JDODuplicateObjectIdException() 44 { 45 } 46 47 51 public JDODuplicateObjectIdException(String msg) 52 { 53 super(msg); 54 } 55 56 62 public JDODuplicateObjectIdException(String msg, Exception nested) 63 { 64 super(msg, nested); 65 } 66 67 72 public JDODuplicateObjectIdException(String msg, Object [] failed) { 73 super(msg, failed); 74 } 75 76 82 public JDODuplicateObjectIdException(String msg, Exception nested, Object [] failed) { 83 super(msg, nested, failed); 84 } 85 } 86 | Popular Tags |