std::error_condition::message

Returns an explanatory message for the stored error value and error category. Effectively calls category().message(value()).

# Declarations

std::string message() const;

(since C++11)

# Return value

An explanatory message for the stored error value and error category.

# See also