Package javax.jdo

Class JDOObjectNotFoundException

All Implemented Interfaces:
Serializable

public class JDOObjectNotFoundException extends JDODataStoreException
This class represents exceptions caused by the user accessing an object that does not exist in the datastore.
Since:
1.0.1
Version:
1.0.1
See Also:
  • Constructor Details

    • 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.
      Parameters:
      msg - the detail message.
    • JDOObjectNotFoundException

      public JDOObjectNotFoundException(String msg, Object failed)
      Constructs a new JDOObjectNotFoundException with the specified detail message and failed object.
      Parameters:
      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.
      Parameters:
      msg - the detail message.
      nested - the nested Throwable.
    • JDOObjectNotFoundException

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

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

      public JDOObjectNotFoundException(String msg, Throwable nested, Object failed)
      Constructs a new JDOFatalInternalException with the specified detail message, nested Throwables, and failed object.
      Parameters:
      msg - the detail message.
      nested - the nested Throwable.
      failed - the failed object.