FileDocCategorySizeDatePackage
JDOObjectNotFoundException.javaAPI DocGlassfish v2 API3751Fri May 04 22:34:56 BST 2007com.sun.jdo.api.persistence.support

JDOObjectNotFoundException

public class JDOObjectNotFoundException extends JDODataStoreException
JDOObjectNotFoundException is thrown instead of a more generic JDODataStoreException in case an internal or an external query returned 0 rows.
author
Marina Vatkina
version
0.1

Fields Summary
Constructors Summary
public JDOObjectNotFoundException()
Creates a new JDOObjectNotFoundException without detail message.

  
public JDOObjectNotFoundException(String msg)
Constructs a new JDOObjectNotFoundException with the specified detail message.

param
msg the detail message.

    super(msg);
  
public JDOObjectNotFoundException(String msg, Exception nested)
Constructs a new JDOObjectNotFoundException with the specified detail message and nested Exception.

param
msg the detail message.
param
nested the nested Exception.

    super(msg, nested);
  
public JDOObjectNotFoundException(String msg, Object[] failed)
Constructs a new JDOObjectNotFoundException with the specified detail message and failed object array.

param
msg the detail message.
param
failed the 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.

param
msg the detail message.
param
nested the nested Exception.
param
failed the failed object array.

    super(msg, nested, failed);
  
Methods Summary