SpotifyException

sealed class SpotifyException : Exception

Types

AuthenticationException
Link copied to clipboard
common
class AuthenticationException(message: String, cause: Throwable?) : SpotifyException
Exception signifying that authentication (via token or code) was unsuccessful, likely due to an invalid access token, code, or refresh token.
BadRequestException
Link copied to clipboard
common
open class BadRequestException(message: String, statusCode: Int?, reason: String?, cause: Throwable?) : SpotifyException
Thrown when a request fails.
ParseException
Link copied to clipboard
common
class ParseException(message: String, cause: Throwable?) : SpotifyException
Exception signifying that JSON (de)serialization failed.
ReAuthenticationNeededException
Link copied to clipboard
common
class ReAuthenticationNeededException(cause: Throwable?, message: String?) : SpotifyException
Exception signifying that re-authentication via spotify-auth is necessary.
SpotifyScopesNeededException
Link copied to clipboard
common
class SpotifyScopesNeededException(cause: Throwable?, missingScopes: List<SpotifyScope>) : SpotifyException.BadRequestException
Exception signifying that the current api token does not have the necessary scope to complete this request
TimeoutException
Link copied to clipboard
common
class TimeoutException(message: String, cause: Throwable?) : SpotifyException
Exception signifying that the HTTP request associated with this API endpoint timed out (by default, after 100 seconds).
UnNullableException
Link copied to clipboard
common
abstract class UnNullableException(message: String) : SpotifyException

Properties

cause
Link copied to clipboard
common
open val cause: Throwable?
message
Link copied to clipboard
common
open val message: String?

Inheritors

SpotifyException
Link copied to clipboard
SpotifyException
Link copied to clipboard
SpotifyException
Link copied to clipboard
SpotifyException
Link copied to clipboard
SpotifyException
Link copied to clipboard
SpotifyException
Link copied to clipboard

Sources

common source
Link copied to clipboard