Exceptions pykka.ActorDeadError Bases: Exception Exception raised when trying to use a dead or unavailable actor. Source code in src/pykka/_exceptions.py 4 5class 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 8 9class Timeout(Exception): # noqa: N818 """Exception raised at future timeout."""