1
2
3
4
5
6
7
8
9
10
11 package org.astrogrid.portal.workflow.intf;
12
13 /*** Catch all exception type for things that go wrong with the workflow interface.
14 * @author Noel Winstanley nw@jb.man.ac.uk 24-Feb-2004
15 *
16 */
17 public class WorkflowInterfaceException extends Exception {
18 /*** Construct a new WorkflowInterfaceException
19 *
20 */
21 public WorkflowInterfaceException() {
22 super();
23 }
24 /*** Construct a new WorkflowInterfaceException
25 * @param message
26 */
27 public WorkflowInterfaceException(String message) {
28 super(message);
29 }
30 /*** Construct a new WorkflowInterfaceException
31 * @param cause
32 */
33 public WorkflowInterfaceException(Throwable cause) {
34 super(cause);
35 }
36 /*** Construct a new WorkflowInterfaceException
37 * @param message
38 * @param cause
39 */
40 public WorkflowInterfaceException(String message, Throwable cause) {
41 super(message, cause);
42 }
43 }
44
45
46
47
48
49
50
51
52
53
54
55
56
57