javax.jdo
Class JDOFatalException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by javax.jdo.JDOException
                  extended by javax.jdo.JDOFatalException
All Implemented Interfaces:
java.io.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:
Serialized Form

Constructor Summary
JDOFatalException()
          Constructs a new JDOFatalException without a detail message.
JDOFatalException(java.lang.String msg)
          Constructs a new JDOFatalException with the specified detail message.
JDOFatalException(java.lang.String msg, java.lang.Object failed)
          Constructs a new JDOFatalException with the specified detail message and failed object.
JDOFatalException(java.lang.String msg, java.lang.Throwable nested)
          Constructs a new JDOFatalException with the specified detail message and nested Throwables.
JDOFatalException(java.lang.String msg, java.lang.Throwable[] nested)
          Constructs a new JDOFatalException with the specified detail message and nested Throwables.
JDOFatalException(java.lang.String msg, java.lang.Throwable[] nested, java.lang.Object failed)
          Constructs a new JDOFatalException with the specified detail message, nested Throwables, and failed object.
JDOFatalException(java.lang.String msg, java.lang.Throwable nested, java.lang.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
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JDOFatalException

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


JDOFatalException

public JDOFatalException(java.lang.String msg)
Constructs a new JDOFatalException with the specified detail message.

Parameters:
msg - the detail message.

JDOFatalException

public JDOFatalException(java.lang.String msg,
                         java.lang.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(java.lang.String msg,
                         java.lang.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(java.lang.String msg,
                         java.lang.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(java.lang.String msg,
                         java.lang.Throwable[] nested,
                         java.lang.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(java.lang.String msg,
                         java.lang.Throwable nested,
                         java.lang.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.


Copyright © 2005-2008 Apache Software Foundation. All Rights Reserved.