From 8cb8390201962e5c3799b851a0f3b35c6f4a551d Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 23 Oct 2023 14:17:36 -0400 Subject: [PATCH] Move `MessagingError` into `._exceptions` set --- tractor/_exceptions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tractor/_exceptions.py b/tractor/_exceptions.py index 0bb4552b..214dc88a 100644 --- a/tractor/_exceptions.py +++ b/tractor/_exceptions.py @@ -83,7 +83,7 @@ class RemoteActorError(Exception): ')' ) - return super().__repr__(self) + return super().__repr__() # TODO: local recontruction of remote exception deats # def unbox(self) -> BaseException: @@ -139,6 +139,9 @@ class AsyncioCancelled(Exception): ''' +class MessagingError(Exception): + 'Some kind of unexpected SC messaging dialog issue' + def pack_error( exc: BaseException,