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