KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > actionflow > NodeExecutorException


1 /*
2  * Copyright (c) 2003, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.verge.mvc.controller.actionflow;
8
9
10 import com.inversoft.util.BaseException;
11
12
13 /**
14  * This class is the exception that is thrown from a NodeExecutor
15  * if there was a problem while trying to execute a Node.
16  *
17  * @author Brian Pontarelli
18  * @since 2.0
19  * @version 2.0
20  */

21 public class NodeExecutorException extends BaseException {
22
23     /**
24      * Constructs a new empty <code>NodeExecutorException</code>
25      */

26     public NodeExecutorException() {
27         super();
28     }
29
30     /**
31      * Constructs a new <code>NodeExecutorException</code> with the given error
32      * message.
33      *
34      * @param message The error message for the exception
35      */

36     public NodeExecutorException(String JavaDoc message) {
37         super(message);
38     }
39
40     /**
41      * Constructs a new <code>NodeExecutorException</code> with the given error
42      * message and root cause
43      *
44      * @param message The error message for the exception
45      * @param cause The root cause throwable
46      */

47     public NodeExecutorException(String JavaDoc message, Throwable JavaDoc cause) {
48         super(message, cause);
49     }
50
51     /**
52      * Constructs a new <code>NodeExecutorException</code> with the given error
53      * root cause
54      *
55      * @param cause The root cause throwable
56      */

57     public NodeExecutorException(Throwable JavaDoc cause) {
58         super(cause);
59     }
60 }
61
Popular Tags