Wrap all exception with ProblemDetail in json object
[pti/o2.git] / o2common / views / route_exception.py
index 07a60a3..ccb439b 100644 (file)
@@ -85,3 +85,9 @@ def configure_exception(app):
         '''Return a custom message and 500 status code'''
         problem = ProblemDetails(500, "Internal Server Error")
         return problem.serialize(), 500
+
+    @app.errorhandler(Exception)
+    def handle_general_exception(error):
+        '''Return a custom message and 500 status code'''
+        problem = ProblemDetails(500, "Internal Server Error")
+        return problem.serialize(), 500