GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::generic_category(3) C++ Standard Libary std::generic_category(3)

std::generic_category - std::generic_category


Defined in header <system_error>
const std::error_category& generic_category() noexcept; (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.


(none)


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

// Run this code


#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';
}


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


system_category identifies the operating system error category
(C++11) (function)
errc the std::error_condition enumeration listing all standard <cerrno>
(C++11) macro constants
(class)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.