Exception: PowerTrack::RateLimitedError

Inherits:
PredefinedStatusPowerTrackError show all
Defined in:
lib/powertrack/errors.rb

Overview

Your app has exceeded the limit on connection requests.

Instance Attribute Summary

Attributes inherited from BasePowerTrackError

#body, #status

Instance Method Summary collapse

Methods inherited from WithStatusPowerTrackError

build

Constructor Details

#initialize(message, body) ⇒ RateLimitedError

Returns a new instance of RateLimitedError.



98
99
100
# File 'lib/powertrack/errors.rb', line 98

def initialize(message, body)
  super(429, message, body)
end