"""Find_or_create_account lambda exceptions.""" class LambdaException(Exception): """Base lambda exception.""" class ProductExistUnderDifferentVendorException(LambdaException): """Product exists under different vendor exception.""" class VendorDoNotIngestException(LambdaException): """Vendor which is not for ingestion.""" class RetryableException(LambdaException): """Custom exception to signal a retryable error."""