Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/28/17 08:04:05 (7 years ago)
Author:
jkarder
Message:

#2830: merged r15367 into stable

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.DebugEngine/3.3/DebugEngine.cs

    r15292 r15384  
    181181      } catch (OperationCanceledException) {
    182182      } catch (AggregateException ae) {
    183         OnExceptionOccurred(ae.InnerExceptions.SingleOrDefault() ?? ae);
     183        ae.FlattenAndHandle(new[] { typeof(OperationCanceledException) }, e => OnExceptionOccurred(e));
    184184      } catch (Exception e) {
    185185        OnExceptionOccurred(e);
Note: See TracChangeset for help on using the changeset viewer.