zhenxun_bot/zhenxun/builtin_plugins/plugin_store/exceptions.py
2025-08-01 14:15:28 +08:00

7 lines
160 B
Python

class PluginStoreException(Exception):
def __init__(self, message: str):
self.message = message
def __str__(self):
return self.message