mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-07 06:16:02 +00:00
7 lines
227 B
Python
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}')
|