Class JDODataStoreException
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.JDOCanRetryException
com.sun.jdo.api.persistence.support.JDODataStoreException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JDOObjectNotFoundException
- Version:
- 0.1
- Author:
- Craig Russell
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newJDODataStoreExceptionwithout detail message.Constructs a newJDODataStoreExceptionwith the specified detail message.JDODataStoreException(String msg, Exception nested) Constructs a newJDODataStoreExceptionwith the specified detail message and nested Exception.JDODataStoreException(String msg, Exception nested, Object[] failed) Constructs a newJDODataStoreExceptionwith the specified detail message, nested exception, and failed object array.JDODataStoreException(String msg, Object[] failed) Constructs a newJDODataStoreExceptionwith the specified detail message and failed object array. -
Method Summary
Methods inherited from class com.sun.jdo.api.persistence.support.JDOException
addFailedObject, getFailedObjectArray, getNestedException, printStackTrace, printStackTrace, printStackTrace, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
-
Constructor Details
-
JDODataStoreException
public JDODataStoreException()Creates a newJDODataStoreExceptionwithout detail message. -
JDODataStoreException
Constructs a newJDODataStoreExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
JDODataStoreException
Constructs a newJDODataStoreExceptionwith the specified detail message and nested Exception.- Parameters:
msg- the detail message.nested- the nestedException.
-
JDODataStoreException
Constructs a newJDODataStoreExceptionwith the specified detail message and failed object array.- Parameters:
msg- the detail message.failed- the failed object array.
-
JDODataStoreException
Constructs a newJDODataStoreExceptionwith the specified detail message, nested exception, and failed object array.- Parameters:
msg- the detail message.nested- the nestedException.failed- the failed object array.
-