10 #ifndef RAD_ERRORS_HPP
11 #define RAD_ERRORS_HPP
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";
Definition: errors.hpp:24
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:20
const ErrorCategory & GetErrorCategory()
Definition: errors.hpp:43
ErrorCodes
Definition: errors.hpp:17
std::error_code make_error_code(rad::ErrorCodes e)
Definition: errors.hpp:52
Definition: errors.hpp:58