javax.jdo

Class JDODataStoreException

Known Direct Subclasses:
JDOObjectNotFoundException

public class JDODataStoreException
extends JDOCanRetryException

This class represents data store exceptions that can be retried.
Version:
1.0

Constructor Summary

JDODataStoreException()
Constructs a new JDODataStoreException without a detail message.
JDODataStoreException(String msg)
Constructs a new JDODataStoreException with the specified detail message.
JDODataStoreException(String msg, Object failed)
Constructs a new JDODataStoreException with the specified detail message and failed object.
JDODataStoreException(String msg, Throwable nested)
Constructs a new JDODataStoreException with the specified detail message and nested Throwables.
JDODataStoreException(String msg, Throwable nested, Object failed)
Constructs a new JDODataStoreException with the specified detail message, nested Throwables, and failed object.
JDODataStoreException(String msg, Throwable[] nested)
Constructs a new JDODataStoreException with the specified detail message and nested Throwables.
JDODataStoreException(String msg, Throwable[] nested, Object failed)
Constructs a new JDODataStoreException with the specified detail message, nested Throwables, and failed object.

Method Summary

Methods inherited from class javax.jdo.JDOException

getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString

Constructor Details

JDODataStoreException

public JDODataStoreException()
Constructs a new JDODataStoreException without a detail message.

JDODataStoreException

public JDODataStoreException(String msg)
Constructs a new JDODataStoreException with the specified detail message.
Parameters:
msg - the detail message.

JDODataStoreException

public JDODataStoreException(String msg,
                             Object failed)
Constructs a new JDODataStoreException with the specified detail message and failed object.
Parameters:
msg - the detail message.
failed - the failed object.

JDODataStoreException

public JDODataStoreException(String msg,
                             Throwable nested)
Constructs a new JDODataStoreException with the specified detail message and nested Throwables.
Parameters:
msg - the detail message.
nested - the nested Throwable.

JDODataStoreException

public JDODataStoreException(String msg,
                             Throwable nested,
                             Object failed)
Constructs a new JDODataStoreException with the specified detail message, nested Throwables, and failed object.
Parameters:
msg - the detail message.
nested - the nested Throwable.
failed - the failed object.

JDODataStoreException

public JDODataStoreException(String msg,
                             Throwable[] nested)
Constructs a new JDODataStoreException with the specified detail message and nested Throwables.
Parameters:
msg - the detail message.
nested - the nested Throwable[].

JDODataStoreException

public JDODataStoreException(String msg,
                             Throwable[] nested,
                             Object failed)
Constructs a new JDODataStoreException with the specified detail message, nested Throwables, and failed object.
Parameters:
msg - the detail message.
nested - the nested Throwable[].
failed - the failed object.