Files
Julian Risch 1794405984 docs: Add docstrings and type annotations (#10824)
* add type annotations to run,warm_up, __str__

* none and any type annotations

* type annotations

* __init__ return type annotation

* list[Document] instead of Any return type annotations

* fmt

* typing

* add run_async return type annotation for LinkContentFetcher

* run_async return type annotations

* fixing docstrings

---------

Co-authored-by: David S. Batista <dsbatista@gmail.com>
2026-03-16 18:16:05 +01:00

22 lines
478 B
Python

# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
#
# SPDX-License-Identifier: Apache-2.0
class SchemaGenerationError(Exception):
"""
Exception raised when automatic schema generation fails.
"""
pass
class ToolInvocationError(Exception):
"""
Exception raised when a Tool invocation fails.
"""
def __init__(self, message: str, tool_name: str) -> None:
super().__init__(message)
self.tool_name = tool_name