14 lines
244 B
Python
14 lines
244 B
Python
__all__ = ['ActorDeadError', 'Timeout']
|
|
|
|
|
|
class ActorDeadError(Exception):
|
|
"""Exception raised when trying to use a dead or unavailable actor."""
|
|
|
|
pass
|
|
|
|
|
|
class Timeout(Exception):
|
|
"""Exception raised at future timeout."""
|
|
|
|
pass
|