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:
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
-
-
Constructor Summary
Constructors Constructor Description JDOUserCallbackException()Constructs a newJDOUserCallbackExceptionwithout a detail message.JDOUserCallbackException(String msg)Constructs a newJDOUserCallbackExceptionwith the specified detail message.JDOUserCallbackException(String msg, Object failed)Constructs a newJDOUserCallbackExceptionwith the specified detail message and failed object.JDOUserCallbackException(String msg, Throwable nested)Constructs a newJDOUserCallbackExceptionwith the specified detail message and nestedThrowables.JDOUserCallbackException(String msg, Throwable[] nested)Constructs a newJDOUserCallbackExceptionwith the specified detail message and nestedThrowables.JDOUserCallbackException(String msg, Throwable[] nested, Object failed)Constructs a newJDOUserCallbackExceptionwith the specified detail message, nestedThrowables, and failed object.JDOUserCallbackException(String msg, Throwable nested, 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
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, setStackTrace
-
-
-
-
Constructor Detail
-
JDOUserCallbackException
public JDOUserCallbackException()
Constructs a newJDOUserCallbackExceptionwithout a detail message.
-
JDOUserCallbackException
public JDOUserCallbackException(String msg)
Constructs a newJDOUserCallbackExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
JDOUserCallbackException
public JDOUserCallbackException(String msg, Throwable[] nested)
Constructs a newJDOUserCallbackExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable[].
-
JDOUserCallbackException
public JDOUserCallbackException(String msg, Throwable nested)
Constructs a newJDOUserCallbackExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable.
-
JDOUserCallbackException
public JDOUserCallbackException(String msg, Object failed)
Constructs a newJDOUserCallbackExceptionwith the specified detail message and failed object.- Parameters:
msg- the detail message.failed- the failed object.
-
JDOUserCallbackException
public JDOUserCallbackException(String msg, Throwable[] nested, 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(String msg, Throwable nested, 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.
-
-