"""Exceptions.""" from ddex_ingester_common.lambda_exceptions import LambdaException class ProductExistsException(LambdaException): """Product exists lambda exception.""" class CreateProductException(LambdaException): """Create product fails exception.""" class UpdateProductException(LambdaException): """Update product fails exception.""" class ParticipantRoleGenreException(LambdaException): """Participant role / genre mismatch exception.""" class DuplicateParticipantException(LambdaException): """Duplicate participant exception.""" class CheckProductException(LambdaException): """Check product fails exception."""