exceptions.py 170 B

123
  1. class BadToolConfig(Exception):
  2. def __init__(self, tool_name: str, message: str):
  3. super().__init__(f"Bad option value found for tool {tool_name}: {message}")