Files
post_crawler/.venv/Lib/site-packages/mcp/client/auth/exceptions.py
T
2026-05-26 21:02:17 +08:00

11 lines
264 B
Python

class OAuthFlowError(Exception):
"""Base exception for OAuth flow errors."""
class OAuthTokenError(OAuthFlowError):
"""Raised when token operations fail."""
class OAuthRegistrationError(OAuthFlowError):
"""Raised when client registration fails."""