- Timestamp:
- 10/19/08 00:42:50 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/sources/HeuristicLab.AdvancedOptimizationFrontend/MainForm.cs
r664 r689 143 143 try { 144 144 task.storable = PersistenceManager.Load(task.filename); 145 } catch(FileNotFoundException ex) { 146 MessageBox.Show("Sorry couldn't open file \"" + task.filename + "\".\nThe file or plugin \"" + ex.FileName+ "\" is not available.\nPlease make sure you have all necessary plugins installed.", 145 } catch(FileNotFoundException fileNotFoundEx) { 146 MessageBox.Show("Sorry couldn't open file \"" + task.filename + "\".\nThe file or plugin \"" + fileNotFoundEx.FileName + "\" is not available.\nPlease make sure you have all necessary plugins installed.", 147 "Reader Error", MessageBoxButtons.OK, MessageBoxIcon.Error); 148 } catch(TypeLoadException typeLoadEx) { 149 MessageBox.Show("Sorry couldn't open file \"" + task.filename + "\".\nThe type \"" + typeLoadEx.TypeName+ "\" is not available.\nPlease make sure that you have the correct version the plugin installed.", 147 150 "Reader Error", MessageBoxButtons.OK, MessageBoxIcon.Error); 148 151 }
Note: See TracChangeset
for help on using the changeset viewer.