Changeset 13352 for branches/RefactorPluginInfrastructure-2522/HeuristicLab.MainForm.WindowsForms/3.3/Dialogs
- Timestamp:
- 11/24/15 11:53:58 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RefactorPluginInfrastructure-2522/HeuristicLab.MainForm.WindowsForms/3.3/Dialogs/ErrorDialog.cs
r13338 r13352 26 26 namespace HeuristicLab.MainForm.WindowsForms { 27 27 public partial class ErrorDialog : Form { 28 public ErrorDialog() { 28 public ErrorDialog() : this(null, null) { } 29 public ErrorDialog(Exception exception) : this(null, exception) { } 30 public ErrorDialog(string message) : this(message, null) { } 31 public ErrorDialog(string message, Exception exception) { 29 32 InitializeComponent(); 30 Initialize(null, null);31 }32 public ErrorDialog(Exception exception)33 : this() {34 Initialize(null, exception);35 }36 public ErrorDialog(string message, Exception exception)37 : this() {38 33 Initialize(message, exception); 39 34 } … … 59 54 System.Diagnostics.Process.Start("mailto:" + supportLinkLabel.Text); 60 55 supportLinkLabel.LinkVisited = true; 61 } 62 catch (Exception) { } 56 } catch (Exception) { } 63 57 } 64 58 }
Note: See TracChangeset
for help on using the changeset viewer.