exception.py (97B)
1 class RemoteException(Exception): 2 name: str 3 4 def __init__(self, name: str): 5 self.name = name