"""
Photometric calibration errors
"""
from mirar.errors import ProcessorError
[docs]
class PhotometryError(ProcessorError):
"""Base error for photometric calibration"""
[docs]
class PhotometryReferenceError(PhotometryError):
"""Error related to the photometric reference catalogue"""
[docs]
class PhotometrySourceError(PhotometryError):
"""Error related to the photometric source catalogue"""
[docs]
class PhotometryCrossMatchError(PhotometryError):
"""Error related to cross-matching photometric reference and source catalogues"""
[docs]
class PhotometryCalculationError(PhotometryError):
"""Error related to the photometric calibration"""