This commit is contained in:
Ubuntu 2024-06-06 19:45:17 +05:30
parent d67551a303
commit 5ba4986d59
2403 changed files with 0 additions and 740883 deletions

View file

@ -1,18 +0,0 @@
# Released under the MIT License. See LICENSE for details.
#
"""Error related functionality."""
from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING:
pass
class RemoteError(Exception):
"""An error occurred on the other end of some connection."""
def __str__(self) -> str:
s = ''.join(str(arg) for arg in self.args)
return f'Remote Exception Follows:\n{s}'