Skip to content

NoEligibleSpeakerError

autogen.NoEligibleSpeakerError #

NoEligibleSpeakerError(message='No eligible speakers.')

Bases: Exception

Exception raised for early termination of a GroupChat.

Source code in autogen/exception_utils.py
def __init__(self, message: str = "No eligible speakers."):
    self.message = message
    super().__init__(self.message)

message instance-attribute #

message = message