| 4074 | } |
| 4075 | |
| 4076 | [[noreturn]] |
| 4077 | void throw_domain_error(std::string const& msg) { |
| 4078 | throw_exception(std::domain_error(msg)); |
| 4079 | } |
| 4080 | |
| 4081 | [[noreturn]] |
| 4082 | void throw_runtime_error(std::string const& msg) { |
nothing calls this directly
no test coverage detected