You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
1 year ago
|
class LoginException(Exception):
|
||
|
"""
|
||
|
自定义登录异常LoginException
|
||
|
"""
|
||
|
|
||
|
def __init__(self, data: str = None, message: str = None):
|
||
|
self.data = data
|
||
|
self.message = message
|
||
|
|
||
|
|
||
|
class AuthException(Exception):
|
||
|
"""
|
||
|
自定义令牌异常AuthException
|
||
|
"""
|
||
|
|
||
|
def __init__(self, data: str = None, message: str = None):
|
||
|
self.data = data
|
||
|
self.message = message
|
||
|
|
||
|
|
||
|
class PermissionException(Exception):
|
||
|
"""
|
||
|
自定义权限异常PermissionException
|
||
|
"""
|
||
|
|
||
|
def __init__(self, data: str = None, message: str = None):
|
||
|
self.data = data
|
||
|
self.message = message
|
||
9 months ago
|
|
||
|
|
||
7 months ago
|
class ServiceException(Exception):
|
||
|
"""
|
||
|
自定义服务异常ServiceException
|
||
|
"""
|
||
|
|
||
|
def __init__(self, data: str = None, message: str = None):
|
||
|
self.data = data
|
||
|
self.message = message
|
||
|
|
||
|
|
||
7 months ago
|
class ServiceWarning(Exception):
|
||
|
"""
|
||
|
自定义服务警告ServiceWarning
|
||
|
"""
|
||
|
|
||
|
def __init__(self, data: str = None, message: str = None):
|
||
|
self.data = data
|
||
|
self.message = message
|
||
|
|
||
|
|
||
9 months ago
|
class ModelValidatorException(Exception):
|
||
|
"""
|
||
|
自定义模型校验异常ModelValidatorException
|
||
|
"""
|
||
|
|
||
|
def __init__(self, data: str = None, message: str = None):
|
||
|
self.data = data
|
||
|
self.message = message
|