10 lines
178 B
Python
10 lines
178 B
Python
from mcp_python.types import ErrorData
|
|
|
|
|
|
class McpError(Exception):
|
|
"""
|
|
Exception type raised when an error arrives over an MCP connection.
|
|
"""
|
|
|
|
error: ErrorData
|