Bases: Exception
Exception raised when the sender is required but not provided.
Source code in autogen/exception_utils.py
| def __init__(self, message: str = "Sender is required but not provided."):
self.message = message
super().__init__(self.message)
|
message instance-attribute