Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/10 04:26:09 (14 years ago)
Author:
swagner
Message:

Implemented ErrorDialog and OperatorExecutionException (#1007)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimizer/3.3/FileManager.cs

    r3557 r3758  
    2626using HeuristicLab.Core.Views;
    2727using HeuristicLab.MainForm;
     28using HeuristicLab.PluginInfrastructure;
    2829
    2930namespace HeuristicLab.Optimizer {
     
    7374      }
    7475      catch (Exception ex) {
    75         Auxiliary.ShowErrorMessageBox(ex);
     76        ErrorHandling.ShowErrorDialog((Control)MainFormManager.MainForm, "Cannot open file.", ex);
    7677      }
    7778      finally {
     
    133134      }
    134135      catch (Exception ex) {
    135         Auxiliary.ShowErrorMessageBox(ex);
     136        ErrorHandling.ShowErrorDialog((Control)MainFormManager.MainForm, "Cannot save file.", ex);
    136137      }
    137138      finally {
Note: See TracChangeset for help on using the changeset viewer.