Source code for astropy.utils.metadata.exceptions

# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""Metadata exceptions and warnings."""


from astropy.utils.exceptions import AstropyWarning

__all__ = ["MergeConflictError", "MergeConflictWarning"]


[docs] class MergeConflictError(TypeError): pass
[docs] class MergeConflictWarning(AstropyWarning): pass