Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Note that BaseError is not universally used.
  • Loading branch information
kylebarron committed Jun 23, 2025
commit 60146b74db3d8b021222dda7599869108e136266
6 changes: 5 additions & 1 deletion obstore/python/obstore/exceptions/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ else:
from typing_extensions import deprecated

class BaseError(Exception):
"""The base exception class."""
"""The base exception class.

!!! note
Some operations also raise a built-in `ValueError` or `FileNotFoundError`.
"""

class GenericError(BaseError):
"""A fallback error type when no variant matches."""
Expand Down
Loading