Skip to content

Latest commit

 

History

History
84 lines (54 loc) · 2.09 KB

system-error-functions.md

File metadata and controls

84 lines (54 loc) · 2.09 KB
title description ms.date f1_keywords helpviewer_keywords
<system_error> functions
Learn more about: <system_error> functions
03/15/2019
system_error/std::generic_category
system_error/std::make_error_code
system_error/std::make_error_condition
system_error/std::system_category
std::generic_category
std::make_error_code
std::make_error_condition
std::system_category

<system_error> functions

generic_category

Represents the category for generic errors.

const error_category& generic_category() noexcept;

Remarks

The generic_category object is an implementation of error_category.

is_error_code_enum_v

A helper variable template for the is_error_code_enum value.

template <class T>
constexpr bool is_error_code_enum_v = is_error_code_enum<T>::value;

is_error_condition_enum_v

A helper variable template for the is_error_condition_enum value.

template <class T>
constexpr bool is_error_condition_enum_v = is_error_condition_enum<T>::value;

make_error_code

Creates an error code object.

error_code make_error_code(std::errc error) noexcept;

Parameters

error
The std::errc enumeration value to store in the error code object.

Return Value

The error code object.

make_error_condition

Creates an error condition object.

error_condition make_error_condition(std::errc error) noexcept;

Parameters

error
The std::errc enumeration value to store in the error condition object.

Return Value

The error condition object.

system_category

Represents the category for operating system errors.

const error_category& system_category() noexcept;

Remarks

The system_category object is an implementation of error_category.