ntchat/fastapi_example/exception.py
2022-08-29 17:02:06 +08:00

9 lines
152 B
Python

class ClientNotExists(Exception):
guid = ""
def __init__(self, guid):
self.guid = guid
class MediaNotExistsError(Exception):
pass