Exception: RitoPlz::API::RateLimitExceededException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/RitoPlz/API/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initializeRateLimitExceededException



80
81
82
83
84
85
86
87
88
89
90
# File 'lib/RitoPlz/API/exceptions.rb', line 80

def initialize
  msg = %{
429 (RATE LIMIT EXCEEDED)
This error indicates you've went over your rate limit. Check your api access rates on Riot's API page.

Common Reason:
  > Calm down there big boy, easy on the requests
  }

  super(msg)
end