std::generic_category

Header: <system_error>

Obtains a reference to the static error category object for generic errors. The object is required to override the virtual function error_category::name() to return a pointer to the string “generic”. It is used to identify error conditions that correspond to the POSIX errno codes.

# Declarations

const std::error_category& generic_category() noexcept;

(since C++11)

# Return value

A reference to the static object of unspecified runtime type, derived from std::error_category.

# Example

#include <cerrno>
#include <iostream>
#include <string>
#include <system_error>
 
int main()
{
    std::error_condition econd = std::generic_category().default_error_condition(EDOM);
    std::cout << "Category: " << econd.category().name() << '\n'
              << "Value: " << econd.value() << '\n'
              << "Message: " << econd.message() << '\n';
}

# See also