"""Create_project lambda exceptions.""" class CreateProjectException(Exception): """Base CreateProject lambda exception.""" class ProjectCodeMismatchException(Exception): """Raised when the project code in the context does not match GraphQL.""" class DuplicateProjectCodeException(Exception): """Raised when a project with the given code already exists on creation.""" class ArtistIdNotFoundException(Exception): """Raised when artist_id cannot be resolved from label_participants."""