Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rate_limit_error.rb « github_import « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc2de909c290666c9dff5b63b519efef81e2fe88 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Gitlab
  module GithubImport
    # Error that will be raised when we're about to reach (or have reached) the
    # GitHub API's rate limit.
    RateLimitError = Class.new(StandardError)
  end
end