class RitoPlz::API::RateLimitExceededException

Public Class Methods

new() click to toggle source
Calls superclass method
# 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