Optionaloverrides?: Partial<Per-code override functions. Keyed by error code (typed as
Partial<Record<ErrorCode, RetryDecisionOverride>> so typos like
POLICY_VIOLATIN fail compile). Returns null to fall through to
the default policy.
OptionalunknownCode?: "escalate" | "mutate"What to do when the error code is not in the standard vocabulary
AND has no per-code override. 'escalate' (default) is the safer
choice for unknown vendor codes — buyer surfaces to user.
'mutate' lets the buyer attempt a generic correction-and-retry.
Buyer-side retry policy with operator-grade defaults per AdCP error code.
Example