1 | #ifndef BANDIT_TEST_RUN_ERROR_H |
---|---|
2 | #define BANDIT_TEST_RUN_ERROR_H |
3 | |
4 | #include <stdexcept> |
5 | |
6 | namespace bandit { |
7 | namespace detail { |
8 | struct test_run_error : public std::runtime_error { |
9 | test_run_error(const char* message) : std::runtime_error(message) {} |
10 | }; |
11 | } |
12 | } |
13 | #endif |
14 |