1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.commons.scxml.invoke;
18
19 /***
20 * Exception thrown when a process specified by an <invoke>
21 * cannot be initiated.
22 *
23 */
24 public class InvokerException extends Exception {
25
26 /***
27 * Serial version UID.
28 */
29 private static final long serialVersionUID = 1L;
30
31 /***
32 * @see java.lang.Exception#Exception()
33 */
34 public InvokerException() {
35 super();
36 }
37
38 /***
39 * @see java.lang.Exception#Exception(java.lang.String)
40 * @param message The error message
41 */
42 public InvokerException(final String message) {
43 super(message);
44 }
45
46 /***
47 * @see java.lang.Exception#Exception(java.lang.Throwable)
48 * @param cause The cause
49 */
50 public InvokerException(final Throwable cause) {
51 super(cause);
52 }
53
54 /***
55 * @see java.lang.Exception#Exception(String, Throwable)
56 * @param message The error message
57 * @param cause The cause
58 */
59 public InvokerException(final String message,
60 final Throwable cause) {
61 super(message, cause);
62 }
63
64 }
65