A serializable type for storing error codes with category and optional, human-readable context information.
More...
Inherits comparable< error >.
|
| error (none_t) noexcept |
|
| error (error &&) noexcept |
|
error & | operator= (error &&) noexcept |
|
| error (const error &) |
|
error & | operator= (const error &) |
|
| error (uint8_t x, atom_value y) |
|
| error (uint8_t x, atom_value y, message z) |
|
template<class E , class = enable_if_has_make_error_t<E>> |
| error (E error_value) |
|
template<class E , class = enable_if_has_make_error_t<E>> |
error & | operator= (E error_value) |
|
uint8_t | code () const noexcept |
| Returns the category-specific error code, whereas 0 means "no error". More...
|
|
atom_value | category () const noexcept |
| Returns the category of this error. More...
|
|
const message & | context () const noexcept |
| Returns context information to this error. More...
|
|
| operator bool () const noexcept |
| Returns *this != none .
|
|
bool | operator! () const noexcept |
| Returns *this == none .
|
|
int | compare (const error &) const noexcept |
|
int | compare (uint8_t x, atom_value y) const noexcept |
|
message & | context () noexcept |
| Returns context information to this error. More...
|
|
void | clear () noexcept |
| Sets the error code to 0.
|
|
|
(Note that these are not member functions.)
|
std::string | to_string (const error &x) |
|
bool | operator== (const error &x, none_t) |
|
bool | operator== (none_t, const error &x) |
|
template<class E , class = enable_if_has_make_error_t<E>> |
bool | operator== (const error &x, E y) |
|
template<class E , class = enable_if_has_make_error_t<E>> |
bool | operator== (E x, const error &y) |
|
bool | operator!= (const error &x, none_t) |
|
bool | operator!= (none_t, const error &x) |
|
template<class E , class = enable_if_has_make_error_t<E>> |
bool | operator!= (const error &x, E y) |
|
template<class E , class = enable_if_has_make_error_t<E>> |
bool | operator!= (E x, const error &y) |
|
A serializable type for storing error codes with category and optional, human-readable context information.
Unlike error handling classes from the C++ standard library, this type is serializable. It consists of an 8-bit code, a 64-bit atom constant, plus optionally a ::message to store additional information.
Why not std::error_code
or std::error_condition
?
First, the standard does not define the values for std::errc
. This means serializing error conditions (which are meant to be portable) is not safe in a distributed setting unless all machines are running the same operating system and version of the C++ standard library.
Second, the standard library primitives, unlike exceptions, do not offer an API for attaching additional context to an error. The error handling API offered by the standard is meant to wrap C system calls in a (source code) portable way. In a distributed setting, an error may not occur locally. In this case, an error code and category alone is often not satisfactory information when signalling errors back to end users. The additional context also enables composition of errors by modifying the message details as needed.
Why is there no string()
member function?
The C++ standard library uses category singletons and virtual dispatching to correlate error codes to descriptive strings. However, singletons are a poor choice when it comes to serialization. CAF uses atoms for categories instead and requires users to register custom error categories to the actor system. This makes the actor system the natural instance for rendering error messages via actor_system::render(const error&)
.