Namespaces
Variants
Views
Actions

std::generic_category

From cppreference.com
< cpp | error
Revision as of 01:40, 29 April 2012 by P12bot (Talk | contribs)

Template:cpp/error/sidebar

Defined in header <system_error>
const std::error_category& generic_category();
(since C++11)

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.

Contents

Parameters

(none)

Return value

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

Example

#include <iostream>
#include <system_error>
#include <cerrno>
#include <string>
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';
}

Output:

Category: generic
Value: 33
Message: Numerical argument out of domain

See also

Template:cpp/error/dcl list err c
base class for error categories
(class) [edit]
identifies the operating system error category
(function) [edit]