std::error_code::error_code

From cppreference.com
< cpp‎ | error‎ | error code
 
 
Utilities library
Type support (basic types, RTTI, type traits)
Dynamic memory management
Error handling
Program utilities
Variadic functions
Date and time
Function objects
(C++11)
Relational operators
Optional and any
(C++17)
(C++17)
Pairs and tuples
(C++11)
(C++17)
Swap, forward and move
(C++14)
(C++11)
(C++11)
Type operations
(C++11)
(C++17)
 
 
 
error_code();
(1) (since C++11)
error_code( int ec, const error_category& ecat );
(2) (since C++11)
template< class ErrorCodeEnum >
error_code( ErrorCodeEnum e );
(3) (since C++11)

Constructs new error code.

1) Constructs error code with default value. Equivalent to error_code(0, std::system_category()).
2) Constructs error code with ec as the platform-dependent error code and ecat as the corresponding error category.
3) Constructs error code from an error code enum e. Equivalent to *this = make_error_code(e). The overload participates in overload resolutions only if std::is_error_code_enum<ErrorCodeEnum>::value == true.

[edit] Parameters

ec - platform dependent error code to construct with
ecat - error category corresponding to ec
e - error code enum to construct with

[edit] Exceptions

noexcept specification:  
noexcept
  

[edit] See also

constructs an std::errc error code
(function)
constructs an iostream error code
(function)
constructs a future error code
(function)