summaryrefslogtreecommitdiff
path: root/wrapper/interop-exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'wrapper/interop-exception.h')
-rw-r--r--wrapper/interop-exception.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/wrapper/interop-exception.h b/wrapper/interop-exception.h
index 8ebae5c..0e88b2c 100644
--- a/wrapper/interop-exception.h
+++ b/wrapper/interop-exception.h
@@ -10,12 +10,3 @@ public ref struct InteropException : System::Exception {
InteropException(const std::exception& e) :
InteropException(e.what()) {}
};
-
-public ref struct RawInputInteropException : InteropException {
- RawInputInteropException(System::String^ what) :
- InteropException(what) {}
- RawInputInteropException(const char* what) :
- InteropException(what) {}
- RawInputInteropException(const std::exception& e) :
- InteropException(e) {}
-};