Exception: FastTrack::TooManyRequestsException

Inherits:
Exception
  • Object
show all
Defined in:
lib/exceptions.rb

Overview

Too many requests

Instance Method Summary collapse

Constructor Details

#initialize(message = 'You made too many requests on the API in a short period of time') ⇒ TooManyRequestsException

Returns a new instance of TooManyRequestsException.



61
62
63
# File 'lib/exceptions.rb', line 61

def initialize(message = 'You made too many requests on the API in a short period of time')
  super(message)
end