ntchat/fastapi_example/exception.py
2022-08-29 17:48:33 +08:00

10 lines
153 B
Python

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