Is there any other way to deal with errors happening inside the get_auth_session decoding? Currently this is my code: ``` try: session = service.get_auth_session(data=data, decoder=json.loads) except JSONDecodeError as e: print("handle error") ```
Is there any other way to deal with errors happening inside the get_auth_session decoding? Currently this is my code: