Defined in header <system_error> | ||
---|---|---|
std::error_condition make_error_condition( std::errc e ) noexcept; | (since C++11) |
Creates an error condition for an errc
value e
. Sets the error code to int(e)
and error category to std::generic_category
.
e | - | standard error code |
Error condition for e
.
#include <system_error> #include <string> #include <iostream> int main() { auto err = std::make_error_condition(std::errc::invalid_argument); std::cout << err.message() << '\n'; }
Possible output:
Invalid argument
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/error/errc/make_error_condition