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 super(message, cause);
24 }
25
26 public FlowConstructInvalidException(Message message)
27 {
28 super(message);
29 }
30
31 public FlowConstructInvalidException(Message message, FlowConstruct flowConstruct)
32 {
33 super(message);
34 addInfo("FlowConstruct", flowConstruct);
35 }
36
37 public FlowConstructInvalidException(Throwable cause)
38 {
39 super(cause);
40 }
41
42 }