-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Standardize on obstore's NotFoundError #199
base: main
Are you sure you want to change the base?
Conversation
Also fine with keeping the Py FileNotFoundError, I think in delta-rs we also raise that one instead of a custom exception |
I'm debating this too... I'm leaning towards using the |
That might be better if you want to handle exceptions across obstore with the base exception. |
@martindurant How can we tell fsspec a list of allowed exceptions? Switching from |
Simplest would be to subclass |
I think one possible solution here (without having to subclass fsspec) is to make |
Closes #197