class CompaniesHouse::RateLimitError

Specific error class for when an invalid API key is used to access the service

Public Class Methods

new(response = nil) click to toggle source
Calls superclass method CompaniesHouse::APIError::new
# File lib/companies_house/rate_limit_error.rb, line 6
def initialize(response = nil)
  super("Rate limit exceeded", response)
end