javax.jdo

Class JDOFatalException

Known Direct 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

Constructor Summary

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

Method Summary

Methods inherited from class javax.jdo.JDOException

getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString

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,
                         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)
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,
                         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)
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,
                         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.