Description
When create instance of AgentFrameworkException,
inner_exception information is lost.
The current code is below:
class AgentFrameworkException(Exception):
"""Base exception for the Agent Framework.
Automatically logs the message as debug.
"""
def __init__(
self,
message: str,
inner_exception: Exception | None = None,
log_level: Literal[0] | Literal[10] | Literal[20] | Literal[30] | Literal[40] | Literal[50] | None = 10,
*args: Any,
**kwargs: Any,
):
"""Create an AgentFrameworkException.
This emits a debug log (by default), with the inner_exception if provided.
"""
if log_level is not None:
logger.log(log_level, message, exc_info=inner_exception)
if inner_exception:
super().__init__(message, inner_exception, *args) # type: ignore
super().__init__(message, *args) # type: ignore
I think code should be:
class AgentFrameworkException(Exception):
"""Base exception for the Agent Framework.
Automatically logs the message as debug.
"""
def __init__(
self,
message: str,
inner_exception: Exception | None = None,
log_level: Literal[0] | Literal[10] | Literal[20] | Literal[30] | Literal[40] | Literal[50] | None = 10,
*args: Any,
**kwargs: Any,
):
"""Create an AgentFrameworkException.
This emits a debug log (by default), with the inner_exception if provided.
"""
if log_level is not None:
logger.log(log_level, message, exc_info=inner_exception)
if inner_exception:
super().__init__(message, inner_exception, *args) # type: ignore
else:
super().__init__(message, *args) # type: ignore
Code Sample
Error Messages / Stack Traces
Package Versions
agent-framework-core
Python Version
No response
Additional Context
No response
Description
When create instance of AgentFrameworkException,
inner_exception information is lost.
The current code is below:
I think code should be:
Code Sample
Error Messages / Stack Traces
Package Versions
agent-framework-core
Python Version
No response
Additional Context
No response