summaryrefslogtreecommitdiff
path: root/vendor/bandit/bandit/test_run_error.h
blob: 307ef3fea2dc99e6fed6f5d02e0d90339c03f95b (plain)
1
2
3
4
5
6
7
8
9
10
11
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