summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/rate_limit_error.rb
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