Wrap all exception with ProblemDetail in json object 60/9760/1
authorBin Yang <bin.yang@windriver.com>
Wed, 23 Nov 2022 09:31:51 +0000 (17:31 +0800)
committerBin Yang <bin.yang@windriver.com>
Wed, 23 Nov 2022 09:32:58 +0000 (17:32 +0800)
Issue-ID: INF-376

Signed-off-by: Bin Yang <bin.yang@windriver.com>
Change-Id: I3f8ed081c5896eedda311f00e5a57e7ccf461a56

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