Esempio n. 1
0
 private void HandleException(Exception ex)
 {
     _optionalExceptionHandler?.Handle(
         new EPDataFlowExceptionContext(
             _dataFlowName,
             _operatorName,
             _operatorNumber,
             _operatorPrettyPrint,
             ex));
 }
Esempio n. 2
0
        private void HandleException(Exception ex)
        {
            if (_optionalExceptionHandler == null)
            {
                return;
            }

            _optionalExceptionHandler.Handle(
                new EPDataFlowExceptionContext(_dataFlowName, _operatorName, _operatorNumber, _operatorPrettyPrint, ex));
        }