Files
AI-System/.venv/lib/python3.11/site-packages/mcp/client/auth/exceptions.py
T
2026-07-04 14:31:50 +02: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."""