""" Module for audit exceptions. """ from ...constants import AuditRunErrors class BaseDataMissing(Exception): """Raised when audit base data is missing.""" def __init__(self): super().__init__(AuditRunErrors.BASE_DATA_MISSING) class AssetAutoMatchingError(Exception): """Raised when there's an error during the asset auto-matching process.""" def __init__(self): super().__init__(AuditRunErrors.ASSET_AUTO_MATCHING_ERROR)