Example #1
0
 public FlowchartException(string _message, IFlowchartElement _element, Exception _innerException) : base(_message, _innerException)
 {
     Element = _element;
 }
Example #2
0
 public FlowchartException(string _message, IFlowchartElement _element) : this(_message, _element, null)
 {
 }