Source code for model_registry.exceptions
"""Exceptions for the model registry."""
[docs]
class DuplicateError(StoreError):
"""Raised when the user tries to put an object with a conflicting property."""
[docs]
class ExperimentRunError(Exception):
"""Raised when an error occurs while working with an experiment run."""
[docs]
class ExperimentRunStoreError(StoreError):
"""Raised when an error occurs while storing an experiment run."""