Files
LangBot/src/langbot/pkg/provider/tools/errors.py
2026-06-06 14:34:40 +08:00

7 lines
227 B
Python

class ToolNotFoundError(ValueError):
"""Raised when a requested tool cannot be found in any active loader."""
def __init__(self, name: str):
self.name = name
super().__init__(f'Tool not found: {name}')