Changeset 15367 for trunk/sources/HeuristicLab.Algorithms.Benchmarks
- Timestamp:
- 09/18/17 12:18:47 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.Benchmarks/3.3/BenchmarkAlgorithm.cs
r15287 r15367 312 312 } catch (OperationCanceledException) { 313 313 } catch (AggregateException ae) { 314 OnExceptionOccurred(ae.InnerExceptions.SingleOrDefault() ?? ae);314 ae.FlattenAndHandle(new[] { typeof(OperationCanceledException) }, e => OnExceptionOccurred(e)); 315 315 } catch (Exception e) { 316 316 OnExceptionOccurred(e);
Note: See TracChangeset
for help on using the changeset viewer.