| 10417 | } |
| 10418 | |
| 10419 | [[noreturn]] |
| 10420 | void throw_domain_error(std::string const& msg) { |
| 10421 | throw_exception(std::domain_error(msg)); |
| 10422 | } |
| 10423 | |
| 10424 | [[noreturn]] |
| 10425 | void throw_runtime_error(std::string const& msg) { |
nothing calls this directly
no test coverage detected