From 0518b3ab04583bfda09dd3e32eb5d3817c82cc93 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 0bb4552..214dc88 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,