| 10163 | } |
| 10164 | |
| 10165 | [[noreturn]] |
| 10166 | void throw_domain_error(std::string const& msg) { |
| 10167 | throw_exception(std::domain_error(msg)); |
| 10168 | } |
| 10169 | |
| 10170 | [[noreturn]] |
| 10171 | void throw_runtime_error(std::string const& msg) { |
nothing calls this directly
no test coverage detected