Package javax.jdo
Class JDOFatalDataStoreException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.jdo.JDOException
-
- javax.jdo.JDOFatalException
-
- javax.jdo.JDOFatalDataStoreException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JDOOptimisticVerificationException
public class JDOFatalDataStoreException extends JDOFatalException
This class represents data store exceptions that cannot be retried.- Version:
- 1.0.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JDOFatalDataStoreException()Constructs a newJDOFatalDataStoreExceptionwithout a detail message.JDOFatalDataStoreException(String msg)Constructs a newJDOFatalDataStoreExceptionwith the specified detail message.JDOFatalDataStoreException(String msg, Object failed)Constructs a newJDOFatalDataStoreExceptionwith the specified detail message and failed object.JDOFatalDataStoreException(String msg, Throwable nested)Constructs a newJDOFatalDataStoreExceptionwith the specified detail message and nestedThrowables.JDOFatalDataStoreException(String msg, Throwable[] nested)Constructs a newJDOFatalDataStoreExceptionwith the specified detail message and nestedThrowables.JDOFatalDataStoreException(String msg, Throwable[] nested, Object failed)Constructs a newJDOFatalDataStoreExceptionwith the specified detail message, nestedThrowables, and failed object.JDOFatalDataStoreException(String msg, Throwable nested, Object failed)Constructs a newJDOFatalDataStoreExceptionwith 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
-
JDOFatalDataStoreException
public JDOFatalDataStoreException()
Constructs a newJDOFatalDataStoreExceptionwithout a detail message.
-
JDOFatalDataStoreException
public JDOFatalDataStoreException(String msg)
Constructs a newJDOFatalDataStoreExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
JDOFatalDataStoreException
public JDOFatalDataStoreException(String msg, Object failed)
Constructs a newJDOFatalDataStoreExceptionwith the specified detail message and failed object.- Parameters:
msg- the detail message.failed- the failed object.
-
JDOFatalDataStoreException
public JDOFatalDataStoreException(String msg, Throwable[] nested)
Constructs a newJDOFatalDataStoreExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable[].
-
JDOFatalDataStoreException
public JDOFatalDataStoreException(String msg, Throwable nested)
Constructs a newJDOFatalDataStoreExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable.
-
JDOFatalDataStoreException
public JDOFatalDataStoreException(String msg, Throwable[] nested, Object failed)
Constructs a newJDOFatalDataStoreExceptionwith the specified detail message, nestedThrowables, and failed object.- Parameters:
msg- the detail message.nested- the nestedThrowable[].failed- the failed object.
-
JDOFatalDataStoreException
public JDOFatalDataStoreException(String msg, Throwable nested, Object failed)
Constructs a newJDOFatalDataStoreExceptionwith the specified detail message, nestedThrowables, and failed object.- Parameters:
msg- the detail message.nested- the nestedThrowable.failed- the failed object.
-
-