Home | History | Annotate | Download | only in src

Lines Matching refs:system_error

1 //===---------------------- system_error.cpp ------------------------------===//
13 #include "system_error"
144 // system_error
147 system_error::__init(const error_code& ec, string what_arg)
158 system_error::system_error(error_code ec, const string& what_arg)
164 system_error::system_error(error_code ec, const char* what_arg)
170 system_error::system_error(error_code ec)
176 system_error::system_error(int ev, const error_category& ecat, const string& what_arg)
182 system_error::system_error(int ev, const error_category& ecat, const char* what_arg)
188 system_error::system_error(int ev, const error_category& ecat)
194 system_error::~system_error() _NOEXCEPT
202 throw system_error(error_code(ev, system_category()), what_arg);