Class JDOFatalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.sun.jdo.api.persistence.support.JDOException
-
- com.sun.jdo.api.persistence.support.JDOFatalException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JDOFatalDataStoreException
,JDOFatalInternalException
,JDOFatalUserException
public class JDOFatalException extends JDOException
- Version:
- 0.1
- Author:
- Craig Russell
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JDOFatalException()
Creates a newJDOFatalException
without detail message.JDOFatalException(String msg)
Constructs a newJDOFatalException
with the specified detail message.JDOFatalException(String msg, Exception nested)
Constructs a newJDOFatalException
with the specified detail message and nested Exception.
-
Method Summary
-
Methods inherited from class com.sun.jdo.api.persistence.support.JDOException
addFailedObject, getFailedObjectArray, getNestedException, printStackTrace, printStackTrace, printStackTrace, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
-
-
-
-
Constructor Detail
-
JDOFatalException
public JDOFatalException()
Creates a newJDOFatalException
without detail message.
-
JDOFatalException
public JDOFatalException(String msg)
Constructs a newJDOFatalException
with the specified detail message.- Parameters:
msg
- the detail message.
-
-