Exception: BulkImports::RetryPipelineError

Inherits:
Error
  • Object
show all
Defined in:
lib/bulk_imports/retry_pipeline_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Error

destination_full_path_validation_failure, destination_namespace_validation_failure, destination_slug_validation_failure, invalid_url, scope_validation_failure, setting_not_enabled, unsupported_gitlab_version

Constructor Details

#initialize(message, retry_delay) ⇒ RetryPipelineError

Returns a new instance of RetryPipelineError.



7
8
9
10
11
# File 'lib/bulk_imports/retry_pipeline_error.rb', line 7

def initialize(message, retry_delay)
  super(message)

  @retry_delay = retry_delay
end

Instance Attribute Details

#retry_delayObject (readonly)

Returns the value of attribute retry_delay.



5
6
7
# File 'lib/bulk_imports/retry_pipeline_error.rb', line 5

def retry_delay
  @retry_delay
end