32 Thread support library [thread]

32.9 Futures [futures]

32.9.3 Error handling [futures.errors]

const error_category& future_category() noexcept;
Returns: A reference to an object of a type derived from class error_Β­category.
The object's default_Β­error_Β­condition and equivalent virtual functions shall behave as specified for the class error_Β­category.
The object's name virtual function returns a pointer to the string "future".
error_code make_error_code(future_errc e) noexcept;
Returns: error_Β­code(static_Β­cast<int>(e), future_Β­category()).
error_condition make_error_condition(future_errc e) noexcept;
Returns: error_Β­condition(static_Β­cast<int>(e), future_Β­category()).