(Form owner, string message)
| 75 | |
| 76 | |
| 77 | public static void FatalError(Form owner, string message) |
| 78 | { |
| 79 | MessageBox.Show(owner, message, "Icinga 2 Setup Wizard", MessageBoxButtons.OK, MessageBoxIcon.Error); |
| 80 | Application.Exit(); |
| 81 | } |
| 82 | |
| 83 | /// <summary> |
| 84 | /// The main entry point for the application. |