zarr.errors#
Exceptions#
Sequence index out of range. |
|
Raised when an array isn't found at a certain path. |
|
Base error which all zarr errors are sub-classed from. |
|
Sequence index out of range. |
|
Raised when both array and group metadata are found at the same path. |
|
Raised when an array already exists at a certain path. |
|
Raised when a group already exists at a certain path. |
|
Raised when a group isn't found at a certain path. |
|
Raised when the Zarr metadata is invalid in some way |
|
Sequence index out of range. |
|
Specialized exception when the node_type of the metadata document is incorrect. |
|
A warning raised to indicate that a feature is outside the Zarr specification. |
|
Sequence index out of range. |
|
A warning raised to indicate that a feature will be removed in a future release. |
|
A warning intended for end users raised to indicate deprecated features. |
|
A warning for dubious runtime behavior. |
Module Contents#
- exception zarr.errors.ArrayNotFoundError(*args: object)[source]#
Bases:
NodeNotFoundErrorRaised when an array isn’t found at a certain path.
- exception zarr.errors.BaseZarrError(*args: object)[source]#
Bases:
ValueErrorBase error which all zarr errors are sub-classed from.
- exception zarr.errors.ContainsArrayAndGroupError(*args: object)[source]#
Bases:
BaseZarrErrorRaised when both array and group metadata are found at the same path.
- exception zarr.errors.ContainsArrayError(*args: object)[source]#
Bases:
BaseZarrErrorRaised when an array already exists at a certain path.
- exception zarr.errors.ContainsGroupError(*args: object)[source]#
Bases:
BaseZarrErrorRaised when a group already exists at a certain path.
- exception zarr.errors.GroupNotFoundError(*args: object)[source]#
Bases:
NodeNotFoundErrorRaised when a group isn’t found at a certain path.
- exception zarr.errors.MetadataValidationError(*args: object)[source]#
Bases:
BaseZarrErrorRaised when the Zarr metadata is invalid in some way
- exception zarr.errors.NodeTypeValidationError(*args: object)[source]#
Bases:
MetadataValidationErrorSpecialized exception when the node_type of the metadata document is incorrect.
This can be raised when the value is invalid or unexpected given the context, for example an ‘array’ node when we expected a ‘group’.
- exception zarr.errors.UnstableSpecificationWarning[source]#
Bases:
ZarrFutureWarningA warning raised to indicate that a feature is outside the Zarr specification.
- exception zarr.errors.VindexInvalidSelectionError[source]#
Bases:
IndexErrorSequence index out of range.
- exception zarr.errors.ZarrDeprecationWarning[source]#
Bases:
DeprecationWarningA warning raised to indicate that a feature will be removed in a future release.