As of today, we have a general exception handler in the server backend.
We return the response as {"message": "Internal Server Error"}.
However, someone may use msg instead of message.
Because of this we need to implement a Response class and Error class model to standardize our responses.
As of today, we have a general exception handler in the server backend.
We return the response as
{"message": "Internal Server Error"}.However, someone may use
msginstead ofmessage.Because of this we need to implement a Response class and Error class model to standardize our responses.