from fastapi import HTTPException, status class InternalServerErrorException(HTTPException): status_code = status.HTTP_500_INTERNAL_SERVER_ERROR detail = "Internal Server Error" def __init__(self): super().__init__(status_code=self.status_code, detail=self.detail)