1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
package org.mule.api.construct; |
12 | |
|
13 | |
import org.mule.api.MuleException; |
14 | |
import org.mule.config.i18n.Message; |
15 | |
|
16 | |
public class FlowConstructInvalidException extends MuleException |
17 | |
{ |
18 | |
|
19 | |
private static final long serialVersionUID = -8170840339166473625L; |
20 | |
|
21 | |
public FlowConstructInvalidException(Message message, Throwable cause) |
22 | |
{ |
23 | 0 | super(message, cause); |
24 | 0 | } |
25 | |
|
26 | |
public FlowConstructInvalidException(Message message) |
27 | |
{ |
28 | 0 | super(message); |
29 | 0 | } |
30 | |
|
31 | |
public FlowConstructInvalidException(Message message, FlowConstruct flowConstruct) |
32 | |
{ |
33 | 0 | super(message); |
34 | 0 | addInfo("FlowConstruct", flowConstruct); |
35 | 0 | } |
36 | |
|
37 | |
public FlowConstructInvalidException(Throwable cause) |
38 | |
{ |
39 | 0 | super(cause); |
40 | 0 | } |
41 | |
|
42 | |
} |