13#include <system_error>
26 const char*
name() const noexcept override final {
return "RAD Error"; }
28 std::string
message(
int err_value)
const override final {
31 return "Reply timed out.";
33 return "Operation was cancelled.";
35 return "Error parsing message payload.";
38 return "Unknown error";
62struct is_error_code_enum<
rad::ErrorCodes> : std::true_type {};
const char * name() const noexcept override final
Definition errors.hpp:26
std::string message(int err_value) const override final
Definition errors.hpp:28
Definition actionsApp.cpp:23
ErrorCodes
Definition errors.hpp:17
const ErrorCategory & GetErrorCategory()
Definition errors.hpp:43
std::error_code make_error_code(rad::ErrorCodes e)
Definition errors.hpp:52