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

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

module BulkImports
  class Error < StandardError
    def self.unsupported_gitlab_version
      self.new("Unsupported GitLab Version. Minimum Supported Gitlab Version #{BulkImport::MINIMUM_GITLAB_MAJOR_VERSION}.")
    end
  end
end