Bypass/Ignore Error Handling?

I spoke too soon. Turns out the try/except block doesn’t help my situation.

anvil.http.request(url=myUrl,method=“GET”)

When running this OUTSIDE a try/except block:
Good: The data posts to the external URL successfully
Bad: an error 0 is thrown stopping all other execution on the Anvil form

When running this INSIDE a try/except block:
Bad: The data does NOT post to the url
Good: I can have remaining code of Anvil form execute

I’m still hunting for a way to successfully run the request to the url AND ignore the resulting Error 0 it produces.

Thank you.