Namespaces
Variants
Views
Actions

std::make_error_condition(std::errc)

From cppreference.com
< cpp‎ | error‎ | errc
 
 
Utilities library
Language support
Type support (basic types, RTTI)
Library feature-test macros (C++20)
Dynamic memory management
Program utilities
Coroutine support (C++20)
Variadic functions
Debugging support
(C++26)
Three-way comparison
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)

 
 
std::errc
Non-member functions
make_error_condition
Helper classes
 
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 value to int(e) and error category to std::generic_category.

[edit] Parameters

e - standard error value

[edit] Return value

Error condition for e.

[edit] Example

#include <iostream>
#include <string>
#include <system_error>
 
int main()
{
    auto err = std::make_error_condition(std::errc::invalid_argument);
    std::cout << err.message() << '\n';
}

Possible output:

Invalid argument