gitlab-org--gitlab-foss/lib/gitlab/github_import/rate_limit_error.rb

10 lines
234 B
Ruby

# 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