Exception: AnalyticsOps::PartialApplyError
- 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
-
#result ⇒ Applier::Result
readonly
Returns the value of attribute result.
Attributes inherited from Error
#remote_code, #remote_metadata, #remote_reason
Instance Method Summary collapse
-
#initialize(message, result:) ⇒ PartialApplyError
constructor
A new instance of PartialApplyError.
Constructor Details
#initialize(message, result:) ⇒ PartialApplyError
Returns a new instance of PartialApplyError.
58 59 60 61 |
# File 'lib/analytics_ops/errors.rb', line 58 def initialize(, result:) @result = result super() end |
Instance Attribute Details
#result ⇒ Applier::Result (readonly)
Returns the value of attribute result.
56 57 58 |
# File 'lib/analytics_ops/errors.rb', line 56 def result @result end |