mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
14 lines
235 B
Ruby
14 lines
235 B
Ruby
# frozen_string_literal: true
|
|
|
|
module BulkImports
|
|
class RetryPipelineError < Error
|
|
attr_reader :retry_delay
|
|
|
|
def initialize(message, retry_delay = nil)
|
|
super(message)
|
|
|
|
@retry_delay = retry_delay
|
|
end
|
|
end
|
|
end
|