Lines Matching refs:what_arg
233 system_error::__init(const error_code& ec, string what_arg) in __init() argument
237 if (!what_arg.empty()) in __init()
238 what_arg += ": "; in __init()
239 what_arg += ec.message(); in __init()
241 return what_arg; in __init()
244 system_error::system_error(error_code ec, const string& what_arg) in system_error() argument
245 : runtime_error(__init(ec, what_arg)), in system_error()
250 system_error::system_error(error_code ec, const char* what_arg) in system_error() argument
251 : runtime_error(__init(ec, what_arg)), in system_error()
262 system_error::system_error(int ev, const error_category& ecat, const string& what_arg) in system_error() argument
263 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error()
268 system_error::system_error(int ev, const error_category& ecat, const char* what_arg) in system_error() argument
269 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error()
285 __throw_system_error(int ev, const char* what_arg) in __throw_system_error() argument
288 throw system_error(error_code(ev, system_category()), what_arg); in __throw_system_error()
291 (void)what_arg; in __throw_system_error()