1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package javax.jdo;
23
24 /*** This class represents data store exceptions that cannot be retried.
25 *
26 * @version 1.0.1
27 */
28 public class JDOFatalDataStoreException extends JDOFatalException {
29
30 /***
31 * Constructs a new <code>JDOFatalDataStoreException</code> without a detail message.
32 */
33 public JDOFatalDataStoreException() {
34 }
35
36
37 /***
38 * Constructs a new <code>JDOFatalDataStoreException</code> with the specified detail message.
39 * @param msg the detail message.
40 */
41 public JDOFatalDataStoreException(String msg) {
42 super(msg);
43 }
44
45 /*** Constructs a new <code>JDOFatalDataStoreException</code> with the specified detail message
46 * and failed object.
47 * @param msg the detail message.
48 * @param failed the failed object.
49 */
50 public JDOFatalDataStoreException(String msg, Object failed) {
51 super(msg, failed);
52 }
53
54 /***
55 * Constructs a new <code>JDOFatalDataStoreException</code> with the specified
56 * detail message and nested <code>Throwable</code>s.
57 * @param msg the detail message.
58 * @param nested the nested <code>Throwable[]</code>.
59 */
60 public JDOFatalDataStoreException(String msg, Throwable[] nested) {
61 super(msg, nested);
62 }
63
64 /***
65 * Constructs a new <code>JDOFatalDataStoreException</code> with the specified
66 * detail message and nested <code>Throwable</code>s.
67 * @param msg the detail message.
68 * @param nested the nested <code>Throwable</code>.
69 */
70 public JDOFatalDataStoreException(String msg, Throwable nested) {
71 super(msg, nested);
72 }
73 }
74