7 lines
136 B
Python
7 lines
136 B
Python
from fastapi.exceptions import HTTPException
|
|
|
|
|
|
class TokenAuthFailure(HTTPException):
|
|
status_code = 401
|
|
detail = "认证失败"
|