Class JDOObjectNotFoundException

All Implemented Interfaces:
Serializable

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.
Version:
0.1
Author:
Marina Vatkina
See Also:
  • Constructor Details

    • JDOObjectNotFoundException

      public JDOObjectNotFoundException()
      Creates a new JDOObjectNotFoundException without detail message.
    • JDOObjectNotFoundException

      public JDOObjectNotFoundException(String msg)
      Constructs a new JDOObjectNotFoundException with the specified detail message.
      Parameters:
      msg - the detail message.
    • JDOObjectNotFoundException

      public JDOObjectNotFoundException(String msg, Exception nested)
      Constructs a new JDOObjectNotFoundException with the specified detail message and nested Exception.
      Parameters:
      msg - the detail message.
      nested - the nested Exception.
    • JDOObjectNotFoundException

      public JDOObjectNotFoundException(String msg, Object[] failed)
      Constructs a new JDOObjectNotFoundException with the specified detail message and failed object array.
      Parameters:
      msg - the detail message.
      failed - the failed object array.
    • JDOObjectNotFoundException

      public JDOObjectNotFoundException(String msg, Exception nested, Object[] failed)
      Constructs a new JDOObjectNotFoundException with the specified detail message, nested exception, and failed object array.
      Parameters:
      msg - the detail message.
      nested - the nested Exception.
      failed - the failed object array.