1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.page.document;
18
19 import org.apache.jetspeed.exception.JetspeedException;
20
21 /***
22 * <p>
23 * NodeNotFoundException
24 * </p>
25 * <p>
26 * Note that these "informational" exceptions must not derive from
27 * NodeException and instead derive from only the base JetspeedException.
28 * </p>
29 * @author <a href="mailto:weaver@apache.org">Scott T. Weaver</a>
30 * @version $Id: NodeNotFoundException.java 516448 2007-03-09 16:25:47Z ate $
31 *
32 */
33 public class NodeNotFoundException extends JetspeedException
34 {
35
36 /***
37 *
38 */
39 public NodeNotFoundException()
40 {
41 super();
42
43 }
44
45 /***
46 * @param message
47 */
48 public NodeNotFoundException( String message )
49 {
50 super(message);
51
52 }
53
54 /***
55 * @param nested
56 */
57 public NodeNotFoundException( Throwable nested )
58 {
59 super(nested);
60
61 }
62
63 /***
64 * @param msg
65 * @param nested
66 */
67 public NodeNotFoundException( String msg, Throwable nested )
68 {
69 super(msg, nested);
70
71 }
72
73 }