javax.jdo

Class JDOUserException

Known Direct Subclasses:
JDODetachedFieldAccessException, JDONullIdentityException, JDOUnsupportedOptionException, JDOUserCallbackException

public class JDOUserException
extends JDOCanRetryException

This class represents user errors that can possibly be retried.
Version:
1.0

Constructor Summary

JDOUserException()
Constructs a new JDOUserException without a detail message.
JDOUserException(String msg)
Constructs a new JDOUserException with the specified detail message.
JDOUserException(String msg, Object failed)
Constructs a new JDOUserException with the specified detail message and failed object.
JDOUserException(String msg, Throwable nested)
Constructs a new JDOUserException with the specified detail message and nested Throwables.
JDOUserException(String msg, Throwable nested, Object failed)
Constructs a new JDOUserException with the specified detail message, nested Throwables, and failed object.
JDOUserException(String msg, Throwable[] nested)
Constructs a new JDOUserException with the specified detail message and nested Throwables.
JDOUserException(String msg, Throwable[] nested, Object failed)
Constructs a new JDOUserException 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

JDOUserException

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

JDOUserException

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

JDOUserException

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

JDOUserException

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

JDOUserException

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

JDOUserException

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

JDOUserException

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