std::system_category (3) - Linux Manuals
std::system_category: std::system_category
NAME
std::system_category - std::system_category
Synopsis
Defined in header <system_error>
const std::error_category& system_category() noexcept; (since C++11)
Obtains a reference to the static error category object for errors reported by the operating system. The object is required to override the virtual function std::error_category::name() to return a pointer to the string "system". It is also required to override the virtual function std::error_category::default_error_condition() to map the error codes that match POSIX errno values to std::generic_category.
Parameters
(none)
Return value
A reference to the static object of unspecified runtime type, derived from std::error_category.
Example
// Run this code
Possible output:
See also
generic_category identifies the generic error category
(C++11)
errc the std::error_condition enumeration listing all standard <cerrno> macro constants
(C++11)