1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package javax.jdo;
24
25 /*** This class represents exceptions caused by exceptions thrown
26 * during execution of callbacks or listeners.
27 *
28 * @version 2.0
29 */
30 public class JDOUserCallbackException extends JDOUserException {
31
32 /***
33 * Constructs a new <code>JDOUserCallbackException</code>
34 * without a detail message.
35 */
36 public JDOUserCallbackException() {
37 }
38
39 /***
40 * Constructs a new <code>JDOUserCallbackException</code>
41 * with the specified detail message.
42 * @param msg the detail message.
43 */
44 public JDOUserCallbackException(String msg) {
45 super(msg);
46 }
47
48 /***
49 * Constructs a new <code>JDOUserCallbackException</code> with the
50 * specified detail message and nested <code>Throwable</code>s.
51 * @param msg the detail message.
52 * @param nested the nested <code>Throwable[]</code>.
53 */
54 public JDOUserCallbackException(String msg, Throwable[] nested) {
55 super(msg, nested);
56 }
57
58 /***
59 * Constructs a new <code>JDOUserCallbackException</code> with the
60 * specified detail message and nested <code>Throwable</code>s.
61 * @param msg the detail message.
62 * @param nested the nested <code>Throwable</code>.
63 */
64 public JDOUserCallbackException(String msg, Throwable nested) {
65 super(msg, nested);
66 }
67 }
68