SystemError

Errors that occur in the actor system.

Attribution: C++ Actor Framework. The framework is well developed and has gathered a lot of experience throughout the years. The error enum is one of many indications of this fact. The enum Error here is a copy of those suitable for a local actor system.

Values

ValueMeaning
none
unexpectedMessage

Indicates that an actor dropped an unexpected message.

unexpectedResponse

Indicates that a response message did not match the provided handler.

requestReceiverDown

Indicates that the receiver of a request is no longer alive.

requestTimeout

Indicates that a request message timed out.

runtimeError

An exception was thrown during message handling.

Meta