image_processor/exceptions.py
2025-03-07 16:53:32 +03:00

9 lines
No EOL
272 B
Python

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)