micro--go-micro
13d1116dee
* Initial plan * Implement micro mcp docs and export commands (Q2 2026 roadmap) Co-authored-by: asim <17530+asim@users.noreply.github.com> * Add comprehensive CLI examples and documentation for new MCP commands Co-authored-by: asim <17530+asim@users.noreply.github.com> * Add LangChain Python SDK for Go Micro (Q2 2026 roadmap) Co-authored-by: asim <17530+asim@users.noreply.github.com> * Update PROJECT_STATUS to reflect LangChain SDK completion Co-authored-by: asim <17530+asim@users.noreply.github.com> * Add implementation summary for Roadmap 2026 session --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: asim <17530+asim@users.noreply.github.com>
22 行
457 B
Python
22 行
457 B
Python
"""Custom exceptions for LangChain Go Micro integration."""
|
|
|
|
|
|
class GoMicroError(Exception):
|
|
"""Base exception for Go Micro integration errors."""
|
|
pass
|
|
|
|
|
|
class GoMicroConnectionError(GoMicroError):
|
|
"""Raised when unable to connect to MCP gateway."""
|
|
pass
|
|
|
|
|
|
class GoMicroAuthError(GoMicroError):
|
|
"""Raised when authentication fails."""
|
|
pass
|
|
|
|
|
|
class GoMicroToolError(GoMicroError):
|
|
"""Raised when tool execution fails."""
|
|
pass
|