Source code for polywrap_manifest.errors

"""This module contains Error types for the polywrap-manifest package."""


[docs]class ManifestError(Exception): """Base class for all exceptions in this module."""
[docs]class DeserializeManifestError(ManifestError): """Raised when a manifest cannot be deserialized."""
__all__ = ["ManifestError", "DeserializeManifestError"]