Class: SpotifyWebApi::TooManyRequestsException

Inherits:
APIException
  • Object
show all
Defined in:
lib/spotify_web_api/exceptions/too_many_requests_exception.rb

Overview

TooManyRequests class.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reason, response) ⇒ TooManyRequestsException

The constructor.

Parameters:

  • The (String)

    reason for raising an exception.

  • The (HttpResponse)

    HttpReponse of the API call.



19
20
21
22
23
# File 'lib/spotify_web_api/exceptions/too_many_requests_exception.rb', line 19

def initialize(reason, response)
  super(reason, response)
  hash = APIHelper.json_deserialize(@response.raw_body)
  unbox(hash)
end

Instance Attribute Details

#errorErrorObject

TODO: Write general description for this method

Returns:



14
15
16
# File 'lib/spotify_web_api/exceptions/too_many_requests_exception.rb', line 14

def error
  @error
end

Instance Method Details

#unbox(hash) ⇒ Object

Populates this object by extracting properties from a hash. response body.

Parameters:

  • The (Hash)

    deserialized response sent by the server in the



28
29
30
# File 'lib/spotify_web_api/exceptions/too_many_requests_exception.rb', line 28

def unbox(hash)
  @error = ErrorObject.from_hash(hash['error']) if hash['error']
end