1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package javax.jdo;
18
19 /**
20 * Exception thrown when an error occurs during enhancement.
21 * @since 3.0
22 */
23 public class JDOEnhanceException extends JDOException
24 {
25 /**
26 * Constructs a new <code>JDOEnhanceException</code> without a
27 * detail message.
28 */
29 public JDOEnhanceException()
30 {
31 }
32
33 /**
34 * Constructs a new <code>JDOEnhanceException</code> with the
35 * specified detail message.
36 * @param msg the detail message.
37 */
38 public JDOEnhanceException(String msg)
39 {
40 super(msg);
41 }
42
43 /**
44 * Constructs a new <code>JDOEnhanceException</code> with the
45 * specified detail message and nested <code>Throwable</code>s.
46 * @param msg the detail message.
47 * @param nested the nested <code>Throwable[]</code>.
48 */
49 public JDOEnhanceException(String msg, Throwable[] nested)
50 {
51 super(msg, nested);
52 }
53
54 /**
55 * Constructs a new <code>JDOEnhanceException</code> with the
56 * specified 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 JDOEnhanceException(String msg, Throwable nested)
61 {
62 super(msg, nested);
63 }
64 }