macro_rules! actor_error {
    ( fatal($msg:expr) ) => { ... };
    ( fatal($msg:literal $(, $ex:expr)+) ) => { ... };
    ( recovered($code:ident, $msg:expr ) ) => { ... };
    ( $code:ident; $msg:expr ) => { ... };
    ( $code:ident; $msg:literal $(, $ex:expr)+ ) => { ... };
    ( $code:ident, $msg:expr ) => { ... };
    ( $code:ident, $msg:literal $(, $ex:expr)+ ) => { ... };
}
Expand description

Convenience macro for generating Actor Errors