Source code for aeat.application.storage.calc_sheets._errors
"""Typed exception hierarchy for the calc-sheets application layer.Every subclass inherits from :class:`aeat.core.errors.AeatError`; theproject error registry's ``__init_subclass__`` hook binds each subclassto its declared :class:`aeat.core.errors.ErrorCode` row at import time."""from__future__importannotationsfrom....core.errorsimportAeatError,CoreValidationError
[docs]classCalcSheetsEngineError(AeatError):"""Raised when the sheet-export engine encounters an unresolvable state. Covers unsupported registry rounding codes and missing dated parameter values that prevent engine from producing a valid export plan. """
[docs]classCalcSheetsRecordError(CoreValidationError):"""Raised when a calc-sheets record operation fails validation. Covers column-index utility failures (out-of-range or malformed A1 column letters) that prevent SheetCellAddress construction. Inherits from :class:`~aeat.core.errors.CoreValidationError` so pydantic validators can surface it as structured validation failure without losing the project-wide :class:`AeatError` contract. """
[docs]classCalcSheetsParityError(AeatError):"""Raised when a parity-harness scenario references unknown casillas. Fired when a test scenario's canonical casilla ids cannot all be resolved in the registry snapshot, making the scenario unprovable. """