Spaces:
Running
Running
File size: 744 Bytes
77d4a9a ea9de1e 77d4a9a 10da86d 0feb19f 10da86d 81e8514 a277f25 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | """Custom exceptions for FastMCP."""
from mcp import McpError # noqa: F401
class FastMCPError(Exception):
"""Base error for FastMCP."""
class ValidationError(FastMCPError):
"""Error in validating parameters or return values."""
class ResourceError(FastMCPError):
"""Error in resource operations."""
class ToolError(FastMCPError):
"""Error in tool operations."""
class PromptError(FastMCPError):
"""Error in prompt operations."""
class InvalidSignature(Exception):
"""Invalid signature for use with FastMCP."""
class ClientError(Exception):
"""Error in client operations."""
class NotFoundError(Exception):
"""Object not found."""
class DisabledError(Exception):
"""Object is disabled."""
|