mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
7 lines
160 B
Python
7 lines
160 B
Python
|
|
class PluginStoreException(Exception):
|
||
|
|
def __init__(self, message: str):
|
||
|
|
self.message = message
|
||
|
|
|
||
|
|
def __str__(self):
|
||
|
|
return self.message
|