Source code for dataio.exceptions

from __future__ import annotations


[docs] class InvalidMetadataError(Exception): """Raised when valid metadata cannot be generated or returned."""
[docs] class ValidationError(ValueError, KeyError): """Raise error while validating."""
[docs] class ConfigurationError(ValueError): pass