You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mentioned in #603 (comment), when we throw an exception while reading a remote file in C++, we currently get a generic RuntimeError in python.
We should be able to translate these to more specific errors (HTTPError, TimeoutError, etc.). Doing a full exception hierarchy like httpx may be a bit much, but at least differentiating between a completed HTTP request with a 500 status code and a timeout is probably worthwhile.
The text was updated successfully, but these errors were encountered:
Mentioned in #603 (comment), when we throw an exception while reading a remote file in C++, we currently get a generic
RuntimeError
in python.We should be able to translate these to more specific errors (
HTTPError
,TimeoutError
, etc.). Doing a full exception hierarchy like httpx may be a bit much, but at least differentiating between a completed HTTP request with a 500 status code and a timeout is probably worthwhile.The text was updated successfully, but these errors were encountered: