mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-08-12 09:15:33 +08:00
5 lines
156 B
Python
5 lines
156 B
Python
# exceptions.py
|
|
class ConnectionTestError(Exception):
|
|
def __init__(self, message: str):
|
|
super().__init__(message)
|
|
self.message = message |