This commit is contained in:
Azeez Muibi
2025-04-14 10:03:25 +01:00
parent 5a5a35ab56
commit 0ea9fba128
22 changed files with 1021 additions and 2 deletions
+3 -2
View File
@@ -81,8 +81,9 @@ class LoanService(BaseService):
return response_data
except Exception as e:
logger.error(f"An error occurred: {str(e)}", exc_info=True)
return jsonify({
"message": "Internal Server Error"
}), 500
"message": f"Internal Server Error: {str(e)}"
}), 500