"""Custom exception hierarchy for earnings transfer.""" from __future__ import annotations class InputValidationError(Exception): """Custom exception for validation failures.""" class S3FileNotFoundError(Exception): """Raised when S3 object is not found.""" class TransientError(Exception): """Retriable errors that trigger Lambda automatic retry with backoff."""