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.DebugEngine/3.3/DebugEngine.cs

    r15367 r15376  
    308308          CurrentOperation = null;
    309309        } catch (Exception ex) {
    310           if (ex is OperationCanceledException) throw ex;
     310          if (ex is OperationCanceledException) throw;
    311311          else throw new OperatorExecutionException(operation.Operator, ex);
    312312        }
Note: See TracChangeset for help on using the changeset viewer.