summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--grapher/Form1.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/grapher/Form1.cs b/grapher/Form1.cs
index 6f61c65..a1d43b3 100644
--- a/grapher/Form1.cs
+++ b/grapher/Form1.cs
@@ -32,8 +32,9 @@ namespace grapher
{
activeAccel = ManagedAccel.GetActiveAccel();
}
- catch (DriverNotInstalledException)
+ catch (DriverNotInstalledException ex)
{
+ MessageBox.Show($"Driver not installed.\n\n {ex.ToString()}");
throw;
}