| 10539 | } |
| 10540 | |
| 10541 | [[noreturn]] |
| 10542 | void throw_domain_error(std::string const& msg) { |
| 10543 | throw_exception(std::domain_error(msg)); |
| 10544 | } |
| 10545 | |
| 10546 | [[noreturn]] |
| 10547 | void throw_runtime_error(std::string const& msg) { |
nothing calls this directly
no test coverage detected