コード例 #1
0
ファイル: GraphSourceRunnable.cs プロジェクト: lanicon/nesper
 private void HandleException(Exception ex)
 {
     _optionalExceptionHandler?.Handle(
         new EPDataFlowExceptionContext(
             _dataFlowName,
             _operatorName,
             _operatorNumber,
             _operatorPrettyPrint,
             ex));
 }
コード例 #2
0
ファイル: GraphSourceRunnable.cs プロジェクト: ikvm/nesper
        private void HandleException(Exception ex)
        {
            if (_optionalExceptionHandler == null)
            {
                return;
            }

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