mirror of
https://github.com/smallevilbeast/ntchat.git
synced 2025-05-23 02:26:11 +08:00
10 lines
153 B
Python
10 lines
153 B
Python
class ClientNotExists(Exception):
|
|
guid = ""
|
|
|
|
def __init__(self, guid):
|
|
self.guid = guid
|
|
|
|
|
|
class MediaNotExistsError(Exception):
|
|
pass
|