diff --git a/app/app.py b/app/app.py index 0e43713..eb5ee3c 100644 --- a/app/app.py +++ b/app/app.py @@ -300,6 +300,15 @@ def salary_verifloan(): "error": "1" }, 404 + except Exception as e: + return { + "status": "0", + "error": str(e), + "message" : "Something went wrong", + "data": None + }, 500 + + def products(): product_data = [ {"cid": "1", "description": "Product Loan 01" , "active" : 0 },