- Timestamp:
- 12/30/11 18:02:41 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobManagerView.cs
r6976 r7249 24 24 using System.ServiceModel.Security; 25 25 using System.Windows.Forms; 26 using HeuristicLab.Clients.Hive.Views; 26 27 using HeuristicLab.Collections; 27 28 using HeuristicLab.MainForm; … … 107 108 private void HandleServiceException(Exception ex) { 108 109 if (ex is MessageSecurityException) { 109 MessageBox.Show("A Message Security error has occured. This normally means that your user name or password is wrong.", "HeuristicLab Hive Administrator", MessageBoxButtons.OK, MessageBoxIcon.Error); 110 MessageBox.Show("A Message Security error has occured. This normally means that your user name or password is wrong.", "HeuristicLab Hive Job Manager", MessageBoxButtons.OK, MessageBoxIcon.Error); 111 } else if (ex is AnonymousUserException) { 112 HiveInformationDialog dialog = new HiveInformationDialog(); 113 dialog.ShowDialog(this); 110 114 } else { 111 115 ErrorHandling.ShowErrorDialog(this, "Refresh failed.", ex);
Note: See TracChangeset
for help on using the changeset viewer.