Source code for jwst.associations.exceptions

__all__ = [
    "AssociationError",
    "AssociationNotAConstraintError",
    "AssociationNotValidError",
]


[docs] class AssociationError(Exception): """Basic errors related to Associations."""
[docs] class AssociationNotAConstraintError(AssociationError): """No matching constraint found."""
[docs] class AssociationNotValidError(AssociationError): """Given data structure is not a valid association."""