api_exception.py
1 from fastapi import HTTPException 2 3 4 class APIException(HTTPException): 5 status_code: int 6 detail: str 7 description: str 8 9 def __init__(self) -> None: 10 super().__init__(self.status_code, self.detail)
1 from fastapi import HTTPException 2 3 4 class APIException(HTTPException): 5 status_code: int 6 detail: str 7 description: str 8 9 def __init__(self) -> None: 10 super().__init__(self.status_code, self.detail)