Commit b924e148 authored by Dominik Charousset's avatar Dominik Charousset

Add `sec::none` (not-an-error) for convenience

parent 51dbea71
...@@ -31,6 +31,8 @@ namespace caf { ...@@ -31,6 +31,8 @@ namespace caf {
/// SEC stands for "System Error Code". This enum contains /// SEC stands for "System Error Code". This enum contains
/// error codes used internally by CAF. /// error codes used internally by CAF.
enum class sec : uint8_t { enum class sec : uint8_t {
/// No error.
none = 0,
/// Indicates that an actor dropped an unexpected message. /// Indicates that an actor dropped an unexpected message.
unexpected_message = 1, unexpected_message = 1,
/// Indicates that a response message did not match the provided handler. /// Indicates that a response message did not match the provided handler.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment