C# Class FluentSpotifyApi.AuthorizationFlows.Core.Client.Token.Exceptions.SpotifyInvalidRefreshTokenException

The exception that is thrown when provided refresh token is invalid. This typically occurs when user revokes access to the Spotify application.
Inheritance: FluentSpotifyApi.AuthorizationFlows.Core.Client.Token.Exceptions.SpotifyAuthenticationErrorException
Show file Open project: dotnetfan/FluentSpotifyApi

Public Methods

Method Description
SpotifyInvalidRefreshTokenException ( HttpStatusCode errorCode, string content, AuthenticationError error ) : System.Net

Initializes a new instance of the SpotifyInvalidRefreshTokenException class.

Method Details

SpotifyInvalidRefreshTokenException() public method

Initializes a new instance of the SpotifyInvalidRefreshTokenException class.
public SpotifyInvalidRefreshTokenException ( HttpStatusCode errorCode, string content, AuthenticationError error ) : System.Net
errorCode HttpStatusCode The error status code.
content string The content.
error AuthenticationError The error.
return System.Net