summaryrefslogtreecommitdiff
path: root/pixpat-native/src/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'pixpat-native/src/error.h')
-rw-r--r--pixpat-native/src/error.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/pixpat-native/src/error.h b/pixpat-native/src/error.h
deleted file mode 100644
index 83a3596..0000000
--- a/pixpat-native/src/error.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-
-#include <stdexcept>
-
-namespace pixpat
-{
-
-struct error : std::runtime_error {
- using std::runtime_error::runtime_error;
-};
-
-struct invalid_argument : error {
- using error::error;
-};
-
-} // namespace pixpat