Source code for lsst.validate.base.errors
# See COPYRIGHT file at the top of the source tree.
"""Exceptions for the lsst.validate namespace."""
__all__ = ['ValidateError',
'ValidateSpecificationError']
[docs]class ValidateSpecificationError(ValidateError):
"""Error accessing or using requirement specifications."""
pass