Files
starbot/starbot/exception/RedisException.py
T
2022-10-29 18:34:28 +08:00

16 lines
217 B
Python

"""
Redis 异常
"""
from .ApiException import ApiException
class RedisException(ApiException):
"""
Redis 异常
"""
def __init__(self, msg: str):
super().__init__()
self.msg = msg