Lines Matching refs:system_error
14 system_error synopsis
107 class system_error
111 system_error(error_code ec, const string& what_arg);
112 system_error(error_code ec, const char* what_arg);
113 system_error(error_code ec);
114 system_error(int ev, const error_category& ecat, const string& what_arg);
115 system_error(int ev, const error_category& ecat, const char* what_arg);
116 system_error(int ev, const error_category& ecat);
461 // system_error
463 class _LIBCPP_TYPE_VIS system_error
468 system_error(error_code __ec, const string& __what_arg);
469 system_error(error_code __ec, const char* __what_arg);
470 system_error(error_code __ec);
471 system_error(int __ev, const error_category& __ecat, const string& __what_arg);
472 system_error(int __ev, const error_category& __ecat, const char* __what_arg);
473 system_error(int __ev, const error_category& __ecat);
474 system_error(const system_error&) _NOEXCEPT = default;
475 ~system_error() _NOEXCEPT;