Skip to content

exceptions

OAuthFlowError

Bases: Exception

Base exception for OAuth flow errors.

Source code in src/mcp/client/auth/exceptions.py
1
2
class OAuthFlowError(Exception):
    """Base exception for OAuth flow errors."""

OAuthTokenError

Bases: OAuthFlowError

Raised when token operations fail.

Source code in src/mcp/client/auth/exceptions.py
5
6
class OAuthTokenError(OAuthFlowError):
    """Raised when token operations fail."""

OAuthRegistrationError

Bases: OAuthFlowError

Raised when client registration fails.

Source code in src/mcp/client/auth/exceptions.py
 9
10
class OAuthRegistrationError(OAuthFlowError):
    """Raised when client registration fails."""