Newer
Older
"""
框架异常类
"""
class AuthenticationError(Exception):
"""
未认证
"""
def __init__(self, detail: str = "Unauthorized"):
self.detail = detail
class AuthorizationError(Exception):
"""
未授权
"""
def __init__(self, detail: str = "Forbidden"):
self.detail = detail
class AppError(Exception):
"""
应用错误
"""
def __init__(self, detail: str = "error"):
self.detail = detail