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 Modifier and Type Field Description private static longserialVersionUID-
Fields inherited from class javax.jdo.JDOException
failed, nested
-
-
Constructor Summary
Constructors Constructor Description JDOUserCallbackException()Constructs a newJDOUserCallbackExceptionwithout a detail message.JDOUserCallbackException(java.lang.String msg)Constructs a newJDOUserCallbackExceptionwith the specified detail message.JDOUserCallbackException(java.lang.String msg, java.lang.Object failed)Constructs a newJDOUserCallbackExceptionwith the specified detail message and failed object.JDOUserCallbackException(java.lang.String msg, java.lang.Throwable nested)Constructs a newJDOUserCallbackExceptionwith the specified detail message and nestedThrowables.JDOUserCallbackException(java.lang.String msg, java.lang.Throwable[] nested)Constructs a newJDOUserCallbackExceptionwith the specified detail message and nestedThrowables.JDOUserCallbackException(java.lang.String msg, java.lang.Throwable[] nested, java.lang.Object failed)Constructs a newJDOUserCallbackExceptionwith the specified detail message, nestedThrowables, and failed object.JDOUserCallbackException(java.lang.String msg, java.lang.Throwable nested, java.lang.Object failed)Constructs a newJDOUserExceptionwith the specified detail message, nestedThrowables, and failed object.
-
Method Summary
-
Methods inherited from class javax.jdo.JDOException
getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JDOUserCallbackException
public JDOUserCallbackException()
Constructs a newJDOUserCallbackExceptionwithout a detail message.
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg)
Constructs a newJDOUserCallbackExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg, java.lang.Throwable[] nested)Constructs a newJDOUserCallbackExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable[].
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg, java.lang.Throwable nested)Constructs a newJDOUserCallbackExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable.
-
JDOUserCallbackException
public JDOUserCallbackException(java.lang.String msg, java.lang.Object failed)Constructs a newJDOUserCallbackExceptionwith 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 newJDOUserCallbackExceptionwith the specified detail message, nestedThrowables, 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 newJDOUserExceptionwith the specified detail message, nestedThrowables, and failed object.- Parameters:
msg- the detail message.nested- the nestedThrowable.failed- the failed object.
-
-