2021-06-25 08:07:44 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module BulkImports
|
|
|
|
class Error < StandardError
|
|
|
|
def self.unsupported_gitlab_version
|
2021-10-13 08:12:20 -04:00
|
|
|
self.new("Unsupported GitLab Version. Minimum Supported Gitlab Version #{BulkImport::MIN_MAJOR_VERSION}.")
|
2021-06-25 08:07:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|