diff options
| author | Jacob Palecki <[email protected]> | 2020-09-02 16:19:11 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-02 16:19:11 -0700 |
| commit | 6b5fdf4e593c056df13de325fea7b6b35fbb750e (patch) | |
| tree | 7f53e3be86a17097aafad43738a34e7c665cfcd0 /wrapper | |
| parent | Merge pull request #1 from Sidiouth/sidi (diff) | |
| parent | Merge pull request #18 from a1xd/write-delay (diff) | |
| download | rawaccel-6b5fdf4e593c056df13de325fea7b6b35fbb750e.tar.xz rawaccel-6b5fdf4e593c056df13de325fea7b6b35fbb750e.zip | |
Merge remote-tracking branch 'upstream/master' into master
Diffstat (limited to 'wrapper')
| -rw-r--r-- | wrapper/wrapper_io.cpp | 4 | ||||
| -rw-r--r-- | wrapper/wrapper_io.hpp | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/wrapper/wrapper_io.cpp b/wrapper/wrapper_io.cpp index 3f5673a..0f257bf 100644 --- a/wrapper/wrapper_io.cpp +++ b/wrapper/wrapper_io.cpp @@ -9,10 +9,6 @@ void wrapper_io::writeToDriver(const settings& args) { write(args); } - catch (const cooldown_error&) - { - throw gcnew DriverWriteCDException(); - } catch (const install_error&) { throw gcnew DriverNotInstalledException(); diff --git a/wrapper/wrapper_io.hpp b/wrapper/wrapper_io.hpp index aff572b..19f096f 100644 --- a/wrapper/wrapper_io.hpp +++ b/wrapper/wrapper_io.hpp @@ -17,5 +17,3 @@ public: }; public ref struct DriverNotInstalledException : public DriverIOException {}; - -public ref struct DriverWriteCDException : public DriverIOException {}; |