01: /*
02: * Created on Jul 14, 2003
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.xssl.bpm.condition;
08:
09: import org.xdev.base.xssl.XSSLAction;
10:
11: /**
12: * @author AYegorov
13: *
14: * To change the template for this generated type comment go to
15: * Window>Preferences>Java>Code Generation>Code and Comments
16: */
17: public class ConditionFailedException extends Exception {
18:
19: /**
20: * @param actionId
21: */
22: public ConditionFailedException(XSSLAction action,
23: AbstractConditionGroup group) {
24: super ("Action " + action.getId() + " returned false in "
25: + group.getId()
26: + " grouping causing the execution to terminate.");
27: // TODO Auto-generated constructor stub
28: }
29:
30: /**
31: * @param actionId
32: * @param groupingId
33: */
34: public ConditionFailedException(XSSLAction action) {
35: super ("Action " + action.getId()
36: + " returned false causing the execution to terminate.");
37: // TODO Auto-generated constructor stub
38: }
39: }
|