Constructors Summary |
---|
public JDOObjectNotFoundException()Creates a new JDOObjectNotFoundException without detail message.
|
public JDOObjectNotFoundException(String msg)Constructs a new JDOObjectNotFoundException with the specified
detail message.
super(msg);
|
public JDOObjectNotFoundException(String msg, Exception nested)Constructs a new JDOObjectNotFoundException with the specified
detail message and nested Exception.
super(msg, nested);
|
public JDOObjectNotFoundException(String msg, Object[] failed)Constructs a new JDOObjectNotFoundException with the specified
detail message and failed object array.
super(msg, failed);
|
public JDOObjectNotFoundException(String msg, Exception nested, Object[] failed)Constructs a new JDOObjectNotFoundException with the specified
detail message, nested exception, and failed object array.
super(msg, nested, failed);
|