Package javax.jdo

Class JDOFatalException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JDOFatalDataStoreException, JDOFatalInternalException, JDOFatalUserException

public class JDOFatalException extends JDOException
This class represents exceptions that are fatal; that is, the condition that caused it cannot be bypassed even if the operation is retried.
Version:
1.0
See Also:
  • Constructor Details

    • JDOFatalException

      public JDOFatalException()
      Constructs a new JDOFatalException without a detail message.
    • JDOFatalException

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

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

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

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

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

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