Source code for ralph.mcp.tools.invalid_params_error
"""Invalid MCP tool parameter error."""
from __future__ import annotations
from .tool_error import ToolError
[docs]
class InvalidParamsError(ToolError):
"""Raised when tool parameters are missing or invalid."""