class StringInvalidChoice(DictGuardValueError):
    def __init__(self, key, value, choices_allowed):
        super().__init__(key, value)
        self.choices_allowed = choices_allowed