Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/20/17 15:56:34 (7 years ago)
Author:
jkarder
Message:

#2831: changed exception handling in engines

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs

    r15368 r15376  
    6262          catch (Exception ex) {
    6363            ExecutionStack.Push(operation);
    64             if (ex is OperationCanceledException) throw ex;
     64            if (ex is OperationCanceledException) throw;
    6565            else throw new OperatorExecutionException(operation.Operator, ex);
    6666          }
Note: See TracChangeset for help on using the changeset viewer.