Free cookie consent management tool by TermsFeed Policy Generator

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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBAlgorithmView.cs

    r17180 r17445  
    325325    }
    326326    private async void startButton_Click(object sender, EventArgs e) {
    327       await Content.StartAsync();
     327      try {
     328        await Content.StartAsync();
     329      } catch (Exception ex) {
     330        ErrorHandling.ShowErrorDialog(this, ex);
     331      }
    328332    }
    329333    private void pauseButton_Click(object sender, EventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.