Package javax.jdo
Class JDOFatalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.jdo.JDOException
-
- javax.jdo.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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JDOFatalException()Constructs a newJDOFatalExceptionwithout a detail message.JDOFatalException(String msg)Constructs a newJDOFatalExceptionwith the specified detail message.JDOFatalException(String msg, Object failed)Constructs a newJDOFatalExceptionwith the specified detail message and failed object.JDOFatalException(String msg, Throwable nested)Constructs a newJDOFatalExceptionwith the specified detail message and nestedThrowables.JDOFatalException(String msg, Throwable[] nested)Constructs a newJDOFatalExceptionwith the specified detail message and nestedThrowables.JDOFatalException(String msg, Throwable[] nested, Object failed)Constructs a newJDOFatalExceptionwith the specified detail message, nestedThrowables, and failed object.JDOFatalException(String msg, Throwable nested, Object failed)Constructs a newJDOFatalExceptionwith the specified detail message, nestedThrowables, 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
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, setStackTrace
-
-
-
-
Constructor Detail
-
JDOFatalException
public JDOFatalException()
Constructs a newJDOFatalExceptionwithout a detail message.
-
JDOFatalException
public JDOFatalException(String msg)
Constructs a newJDOFatalExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
JDOFatalException
public JDOFatalException(String msg, Throwable[] nested)
Constructs a newJDOFatalExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable[].
-
JDOFatalException
public JDOFatalException(String msg, Throwable nested)
Constructs a newJDOFatalExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable.
-
JDOFatalException
public JDOFatalException(String msg, Object failed)
Constructs a newJDOFatalExceptionwith 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 newJDOFatalExceptionwith the specified detail message, nestedThrowables, and failed object.- Parameters:
msg- the detail message.nested- the nestedThrowable[].failed- the failed object.
-
-