Move `MessagingError` into `._exceptions` set
parent
2f0bed3018
commit
0518b3ab04
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue