22 lines
558 B
Ruby
22 lines
558 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module ImportExport
|
|
class Error < StandardError
|
|
def self.permission_error(user, object)
|
|
self.new(
|
|
"User with ID: %s does not have required permissions for %s: %s with ID: %s" %
|
|
[user.id, object.class.name, object.name, object.id]
|
|
)
|
|
end
|
|
|
|
def self.unsupported_object_type_error
|
|
self.new('Unknown object type')
|
|
end
|
|
|
|
def self.file_compression_error
|
|
self.new('File compression/decompression failed')
|
|
end
|
|
end
|
|
end
|
|
end
|