ErrorResponse

data class ErrorResponse(error: ErrorObject, exception: Exception?)

Wraps around ErrorObject. Serialized raw Spotify error response

Parameters

error

The error code and message, as returned by Spotify

exception

The associated Kotlin exception for this error

Constructors

ErrorResponse
Link copied to clipboard
common
fun ErrorResponse(error: ErrorObject, exception: Exception? = null)
The error code and message, as returned by Spotify

Properties

error
Link copied to clipboard
common
val error: ErrorObject
The error code and message, as returned by Spotify
exception
Link copied to clipboard
common
val exception: Exception? = null
The associated Kotlin exception for this error

Sources

common source
Link copied to clipboard