Source code for autogen_core.base.exceptions
__all__ = [
"CantHandleException",
"UndeliverableException",
"MessageDroppedException",
]
[docs]
class CantHandleException(Exception):
"""Raised when a handler can't handle the exception."""
[docs]
class UndeliverableException(Exception):
"""Raised when a message can't be delivered."""
[docs]
class MessageDroppedException(Exception):
"""Raised when a message is dropped."""
class NotAccessibleError(Exception):
"""Tried to access a value that is not accessible. For example if it is remote cannot be accessed locally."""