Skip to content

Exceptions

pykka.ActorDeadError

Bases: Exception

Exception raised when trying to use a dead or unavailable actor.

Source code in src/pykka/_exceptions.py
class ActorDeadError(Exception):
    """Exception raised when trying to use a dead or unavailable actor."""

pykka.Timeout

Bases: Exception

Exception raised at future timeout.

Source code in src/pykka/_exceptions.py
class Timeout(Exception):  # noqa: N818
    """Exception raised at future timeout."""