Package javax.jdo
Class JDOFatalInternalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.jdo.JDOException
javax.jdo.JDOFatalException
javax.jdo.JDOFatalInternalException
- All Implemented Interfaces:
Serializable
This class represents errors in the implementation for which no user
error handling is possible. The error should be reported to the JDO
vendor for corrective action.
- Version:
- 1.0
- See Also:
-
Field Summary
FieldsFields inherited from class javax.jdo.JDOException
failed, nested
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newJDOFatalInternalException
without a detail message.Constructs a newJDOFatalInternalException
with the specified detail message.JDOFatalInternalException
(String msg, Object failed) Constructs a newJDOFatalInternalException
with the specified detail message and failed object.JDOFatalInternalException
(String msg, Throwable nested) Constructs a newJDOFatalInternalException
with the specified detail message and nestedThrowable
s.JDOFatalInternalException
(String msg, Throwable[] nested) Constructs a newJDOFatalInternalException
with the specified detail message and nestedThrowable
s.JDOFatalInternalException
(String msg, Throwable[] nested, Object failed) Constructs a newJDOFatalInternalException
with the specified detail message, nestedThrowable
s, and failed object.JDOFatalInternalException
(String msg, Throwable nested, Object failed) Constructs a newJDOFatalInternalException
with the specified detail message, nestedThrowable
s, 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
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
JDOFatalInternalException
public JDOFatalInternalException()Constructs a newJDOFatalInternalException
without a detail message. -
JDOFatalInternalException
Constructs a newJDOFatalInternalException
with the specified detail message.- Parameters:
msg
- the detail message.
-
JDOFatalInternalException
Constructs a newJDOFatalInternalException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable[]
.
-
JDOFatalInternalException
Constructs a newJDOFatalInternalException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable
.
-
JDOFatalInternalException
Constructs a newJDOFatalInternalException
with the specified detail message and failed object.- Parameters:
msg
- the detail message.failed
- the failed object.
-
JDOFatalInternalException
Constructs a newJDOFatalInternalException
with the specified detail message, nestedThrowable
s, and failed object.- Parameters:
msg
- the detail message.nested
- the nestedThrowable[]
.failed
- the failed object.
-
JDOFatalInternalException
Constructs a newJDOFatalInternalException
with the specified detail message, nestedThrowable
s, and failed object.- Parameters:
msg
- the detail message.nested
- the nestedThrowable
.failed
- the failed object.
-