Skip to content

ccproxy.auth.exceptions

ccproxy.auth.exceptions

Authentication exceptions.

AuthenticationError

Bases: Exception

Base authentication error.

AuthenticationRequiredError

Bases: AuthenticationError

Authentication is required but not provided.

InvalidTokenError

Bases: AuthenticationError

Invalid or expired token.

InsufficientPermissionsError

Bases: AuthenticationError

Insufficient permissions for the requested operation.

CredentialsError

Bases: AuthenticationError

Base credentials error.

CredentialsNotFoundError

Bases: CredentialsError

Credentials not found error.

CredentialsExpiredError

Bases: CredentialsError

Credentials expired error.

CredentialsInvalidError

Bases: CredentialsError

Credentials are invalid or malformed.

CredentialsStorageError

Bases: CredentialsError

Error occurred during credentials storage operations.

OAuthError

Bases: AuthenticationError

Base OAuth error.

OAuthLoginError

Bases: OAuthError

OAuth login failed.

OAuthTokenRefreshError

Bases: OAuthError

OAuth token refresh failed.

OAuthCallbackError

Bases: OAuthError

OAuth callback failed.