forked from goodboy/tractor
1
0
Fork 0

Move `MessagingError` into `._exceptions` set

multihomed
Tyler Goodlet 2023-10-23 14:17:36 -04:00
parent 2f0bed3018
commit 0518b3ab04
1 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class RemoteActorError(Exception):
')' ')'
) )
return super().__repr__(self) return super().__repr__()
# TODO: local recontruction of remote exception deats # TODO: local recontruction of remote exception deats
# def unbox(self) -> BaseException: # 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( def pack_error(
exc: BaseException, exc: BaseException,