# -*- coding: utf-8 -*- """The exception module in agentscope.""" from ._base import ( AgentOrientedException, DeveloperOrientedException, ) from ._tool import ( ToolInterruptedError, ToolNotFoundError, ToolJSONDecodeError, ToolGroupInactiveError, ) __all__ = [ "AgentOrientedException", "DeveloperOrientedException", "ToolInterruptedError", "ToolNotFoundError", "ToolJSONDecodeError", "ToolGroupInactiveError", ]