summaryrefslogtreecommitdiff
path: root/lib/bulk_imports/error.rb
blob: 988982d3cdf83ec66967088d1bfb1085fd9ded72 (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::MIN_MAJOR_VERSION}.")
    end
  end
end