Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/19/20 13:50:24 (5 years ago)
Author:
jkarder
Message:

#3060: catch unhandled exceptions thrown by IOptimizer.StartAsync()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/CrossValidationView.cs

    r17180 r17445  
    223223
    224224    private async void startButton_Click(object sender, EventArgs e) {
    225       await Content.StartAsync();
     225      try {
     226        await Content.StartAsync();
     227      } catch (Exception ex) {
     228        ErrorHandling.ShowErrorDialog(this, ex);
     229      }
    226230    }
    227231    private void pauseButton_Click(object sender, EventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.