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