| 263 | } |
| 264 | |
| 265 | system_error::system_error(error_code ec, const string& what_arg) |
| 266 | : runtime_error{what_arg.c_str()}, code_{ec} |
| 267 | { /* DUMMY BODY */ } |
| 268 | |
| 269 | system_error::system_error(error_code ec, const char* what_arg) |
| 270 | : runtime_error{what_arg}, code_{ec} |