flask-rest-api-blog-series
flask-rest-api-blog-series copied to clipboard
Custom error error - Part 4: Exception Handling
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.