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
public class JDOFatalInternalException extends JDOFatalException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JDOFatalInternalException()Constructs a newJDOFatalInternalExceptionwithout a detail message.JDOFatalInternalException(String msg)Constructs a newJDOFatalInternalExceptionwith the specified detail message.JDOFatalInternalException(String msg, Object failed)Constructs a newJDOFatalInternalExceptionwith the specified detail message and failed object.JDOFatalInternalException(String msg, Throwable nested)Constructs a newJDOFatalInternalExceptionwith the specified detail message and nestedThrowables.JDOFatalInternalException(String msg, Throwable[] nested)Constructs a newJDOFatalInternalExceptionwith the specified detail message and nestedThrowables.JDOFatalInternalException(String msg, Throwable[] nested, Object failed)Constructs a newJDOFatalInternalExceptionwith the specified detail message, nestedThrowables, and failed object.JDOFatalInternalException(String msg, Throwable nested, Object failed)Constructs a newJDOFatalInternalExceptionwith 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
-
JDOFatalInternalException
public JDOFatalInternalException()
Constructs a newJDOFatalInternalExceptionwithout a detail message.
-
JDOFatalInternalException
public JDOFatalInternalException(String msg)
Constructs a newJDOFatalInternalExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
JDOFatalInternalException
public JDOFatalInternalException(String msg, Throwable[] nested)
Constructs a newJDOFatalInternalExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable[].
-
JDOFatalInternalException
public JDOFatalInternalException(String msg, Throwable nested)
Constructs a newJDOFatalInternalExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable.
-
JDOFatalInternalException
public JDOFatalInternalException(String msg, Object failed)
Constructs a newJDOFatalInternalExceptionwith the specified detail message and failed object.- Parameters:
msg- the detail message.failed- the failed object.
-
JDOFatalInternalException
public JDOFatalInternalException(String msg, Throwable[] nested, Object failed)
Constructs a newJDOFatalInternalExceptionwith the specified detail message, nestedThrowables, and failed object.- Parameters:
msg- the detail message.nested- the nestedThrowable[].failed- the failed object.
-
JDOFatalInternalException
public JDOFatalInternalException(String msg, Throwable nested, Object failed)
Constructs a newJDOFatalInternalExceptionwith the specified detail message, nestedThrowables, and failed object.- Parameters:
msg- the detail message.nested- the nestedThrowable.failed- the failed object.
-
-