zhenxun_bot/zhenxun/builtin_plugins/plugin_store/exceptions.py

7 lines
160 B
Python
Raw Normal View History

2025-08-01 14:15:28 +08:00
class PluginStoreException(Exception):
def __init__(self, message: str):
self.message = message
def __str__(self):
return self.message