Spaces:
Sleeping
Sleeping
File size: 401 Bytes
775ba42 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from http import HTTPStatus
from fastapi import HTTPException, status
class CustomException(HTTPException):
def __init__(
self,
status_code: int = status.HTTP_500_INTERNAL_SERVER_ERROR,
detail: str | None = None,
):
if not detail:
detail = HTTPStatus(status_code).description
super().__init__(status_code=status_code, detail=detail)
|