Exception: AnalyticsOps::PartialApplyError

Inherits:
Error
  • Object
show all
Defined in:
lib/analytics_ops/errors.rb,
sig/analytics_ops.rbs

Overview

Apply failure carrying structured successful, failed, and remaining changes.

Instance Attribute Summary collapse

Attributes inherited from Error

#remote_code, #remote_metadata, #remote_reason

Instance Method Summary collapse

Constructor Details

#initialize(message, result:) ⇒ PartialApplyError

Returns a new instance of PartialApplyError.

Parameters:



58
59
60
61
# File 'lib/analytics_ops/errors.rb', line 58

def initialize(message, result:)
  @result = result
  super(message)
end

Instance Attribute Details

#resultApplier::Result (readonly)

Returns the value of attribute result.

Returns:



56
57
58
# File 'lib/analytics_ops/errors.rb', line 56

def result
  @result
end