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.compare;
08:
09: /**
10: * @author AYegorov
11: *
12: * To change the template for this generated type comment go to
13: * Window>Preferences>Java>Code Generation>Code and Comments
14: */
15: import org.xdev.base.xssl.XSSLAction;
16: import org.xdev.base.xssl.XSSLComponent;
17:
18: public class ComparisonFailedException extends Exception {
19:
20: /**
21: *
22: */
23: public ComparisonFailedException(XSSLComponent source,
24: XSSLComponent target, AbstractComparison comparison) {
25: super ("Comparison " + comparison.getId()
26: + " failed for source " + source.getId()
27: + " vs target " + target.getId());
28: // TODO Auto-generated constructor stub
29: }
30:
31: }
|