mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-08-15 11:04:27 +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 |