diff options
| author | a1xd <[email protected]> | 2020-09-28 01:32:02 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-09-28 01:32:02 -0400 |
| commit | e49d06cae37765bb614c1740f9495a8c1d3100ac (patch) | |
| tree | 6ca7d9612db7a139b60ccfd7407c338e4a0109f7 /grapher/Form1.cs | |
| parent | Merge pull request #26 from a1xd/argcheck (diff) | |
| parent | Fix legacy offset bugs (diff) | |
| download | rawaccel-e49d06cae37765bb614c1740f9495a8c1d3100ac.tar.xz rawaccel-e49d06cae37765bb614c1740f9495a8c1d3100ac.zip | |
Merge pull request #27 from JacobPalecki/GUI
GUI Error Handling
Diffstat (limited to 'grapher/Form1.cs')
| -rw-r--r-- | grapher/Form1.cs | 3 |
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; } |