javax.jdo
Class JDOObjectNotFoundException
java.lang.RuntimeException
public class JDOObjectNotFoundException
This class represents exceptions caused by the user accessing
an object that does not exist in the datastore.
JDOObjectNotFoundException()- Constructs a new
JDOObjectNotFoundException
without a detail message.
|
JDOObjectNotFoundException(String msg)- Constructs a new
JDOObjectNotFoundException
with the specified detail message.
|
JDOObjectNotFoundException(String msg, Object failed)- Constructs a new
JDOObjectNotFoundException with the specified detail message
and failed object.
|
JDOObjectNotFoundException(String msg, Throwable[] nested)- Constructs a new
JDOObjectNotFoundException with the
specified detail message and nested Throwables.
|
JDOObjectNotFoundException
public JDOObjectNotFoundException()
Constructs a new JDOObjectNotFoundException
without a detail message.
JDOObjectNotFoundException
public JDOObjectNotFoundException(String msg)
Constructs a new JDOObjectNotFoundException
with the specified detail message.
msg - the detail message.
JDOObjectNotFoundException
public JDOObjectNotFoundException(String msg,
Object failed)Constructs a new JDOObjectNotFoundException with the specified detail message
and failed object.
msg - the detail message.failed - the failed object.
JDOObjectNotFoundException
public JDOObjectNotFoundException(String msg,
Throwable[] nested) Constructs a new JDOObjectNotFoundException with the
specified detail message and nested Throwables.
msg - the detail message.nested - the nested Throwable[].