std::iostream_category (3) - Linux Manuals
std::iostream_category: std::iostream_category
NAME
std::iostream_category - std::iostream_category
Synopsis
Defined in header <ios>
const std::error_category& iostream_category() noexcept; (since C++11)
Obtains a reference to the static error category object for iostream errors. The object is required to override the virtual function error_category::name() to return a pointer to the string "iostream". It is used to identify error codes provided in the exceptions of type std::ios_base::failure.
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
failure (public member class of std::ios_base)
io_errc the IO stream error codes
(C++11)