Hey, I was following the exception handling post and the exceptions were not added into my response.
According to the documentation
Custom Exceptions must have HTTPException as the base Exception.
So doing something like class InternalServerError(HTTPException) worked for me.
Hey, I was following the exception handling post and the exceptions were not added into my response.
According to the documentation
So doing something like
class InternalServerError(HTTPException)worked for me.