summaryrefslogtreecommitdiff
path: root/vendor/bandit/bandit/test_run_error.h
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bandit/bandit/test_run_error.h')
-rw-r--r--vendor/bandit/bandit/test_run_error.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/bandit/bandit/test_run_error.h b/vendor/bandit/bandit/test_run_error.h
new file mode 100644
index 00000000..307ef3fe
--- /dev/null
+++ b/vendor/bandit/bandit/test_run_error.h
@@ -0,0 +1,12 @@
+#ifndef BANDIT_TEST_RUN_ERROR
+#define BANDIT_TEST_RUN_ERROR
+
+namespace bandit { namespace detail {
+
+ struct test_run_error : public std::runtime_error
+ {
+ test_run_error(const char* message) : std::runtime_error(message) {}
+ };
+}}
+
+#endif