Package javax.jdo
Class JDOUserCallbackException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.jdo.JDOException
-
- javax.jdo.JDOCanRetryException
-
- javax.jdo.JDOUserException
-
- javax.jdo.JDOUserCallbackException
-
- All Implemented Interfaces:
java.io.Serializable
public class JDOUserCallbackException extends JDOUserException
This class represents exceptions caused by exceptions thrown during execution of callbacks or listeners.- Version:
- 2.0
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.jdo.JDOException
failed, nested
-
-
Constructor Summary
Constructors Constructor Description JDOUserCallbackException()
Constructs a newJDOUserCallbackException
without a detail message.JDOUserCallbackException(java.lang.String msg)
Constructs a newJDOUserCallbackException
with the specified detail message.JDOUserCallbackException(java.lang.String msg, java.lang.Object failed)
Constructs a newJDOUserCallbackException
with the specified detail message and failed object.JDOUserCallbackException(java.lang.String msg, java.lang.Throwable nested)
Constructs a newJDOUserCallbackException
with the specified detail message and nestedThrowable
s.JDOUserCallbackException(java.lang.String msg, java.lang.Throwable[] nested)
Constructs a newJDOUserCallbackException
with the specified detail message and nestedThrowable
s.JDOUserCallbackException(java.lang.String msg, java.lang.Throwable[] nested, java.lang.Object failed)
Constructs a newJDOUserCallbackException
with the specified detail message, nestedThrowable
s, and failed object.JDOUserCallbackException(java.lang.String msg, java.lang.Throwable nested, java.lang.Object failed)
Constructs a newJDOUserException
with the specified detail message, nestedThrowable
s, and failed object.
-
Method Summary
-
Methods inherited from class javax.jdo.JDOException
getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
JDOUserCallbackException
public JDOUserCallbackException()
Constructs a newJDOUserCallbackException
without a detail message.
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg)
Constructs a newJDOUserCallbackException
with the specified detail message.- Parameters:
msg
- the detail message.
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg, java.lang.Throwable[] nested)
Constructs a newJDOUserCallbackException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable[]
.
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg, java.lang.Throwable nested)
Constructs a newJDOUserCallbackException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable
.
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg, java.lang.Object failed)
Constructs a newJDOUserCallbackException
with the specified detail message and failed object.- Parameters:
msg
- the detail message.failed
- the failed object.
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg, java.lang.Throwable[] nested, java.lang.Object failed)
Constructs a newJDOUserCallbackException
with the specified detail message, nestedThrowable
s, and failed object.- Parameters:
msg
- the detail message.nested
- the nestedThrowable[]
.failed
- the failed object.
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg, java.lang.Throwable nested, java.lang.Object failed)
Constructs a newJDOUserException
with the specified detail message, nestedThrowable
s, and failed object.- Parameters:
msg
- the detail message.nested
- the nestedThrowable
.failed
- the failed object.
-
-