<system_error> 함수

generic_category

일반 오류의 범주를 나타냅니다.

const error_category& generic_category() noexcept;

설명

개체는 generic_category error_category 구현입니다.

is_error_code_enum_v

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

is_error_condition_enum_v

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

make_error_code

오류 코드 개체를 만듭니다.

error_code make_error_code(std::errc error) noexcept;

매개 변수

error
std::errc 오류 코드 개체에 저장할 열거형 값입니다.

Return Value

오류 코드 개체입니다.

설명

make_error_condition

오류 조건 개체를 만듭니다.

error_condition make_error_condition(std::errc error) noexcept;

매개 변수

error
std::errc 오류 코드 개체에 저장할 열거형 값입니다.

Return Value

오류 조건 개체입니다.

설명

system_category

하위 수준 시스템 오버플로로 인해 발생하는 오류의 범주를 나타냅니다.

const error_category& system_category() noexcept;

설명

개체는 system_category error_category 구현입니다.