Sha256: 12f923965d0d3dbb56d4c91e2b2c12486f12f900ac0821065db08a246b8b6276
Contents?: true
Size: 575 Bytes
Versions: 7
Compression:
Stored size: 575 Bytes
Contents
# frozen_string_literal: true require 'cloud_party/exception' module CloudParty module Errors # Page/Endpoint doesn't exist class MethodNotAllowedError < RequestError def initialize(obj:, method:, response:, endpoint: nil, code: 405) super end def self.error_string <<~HEREDOC There was a '429 -- Too many requests' error. You've hit the rate limit of Cloudflare HEREDOC end def self.extra_string <<~HEREDOC VERB: #{@method} HEREDOC end end end end
Version data entries
7 entries across 7 versions & 1 rubygems