mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
7cc29fe192
* package setup with logger * set config once * add unit test workflow * updated naming of workflows * add mypy check * renamed job * smaller name * ignore certain files for ruff * remove assignment * fix ruff config * removed pyright from pre-commit * fixed logging test * fix mypy setup * mypy fix * mypy * mypy
8 lines
162 B
Python
8 lines
162 B
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
|
|
class AgentFrameworkException(Exception):
|
|
"""Base class for exceptions in the Agent Framework."""
|
|
|
|
pass
|