Exception: OCI::Errors::CompositeOperationError
- Inherits:
-
StandardError
- Object
- StandardError
- OCI::Errors::CompositeOperationError
- Defined in:
- lib/oci/errors.rb
Overview
This error is used by the CompositeOperation classes to flag when part of an operation succeeded. For example, creating a resource succeeded but waiting for it to move into a given state failed. This error will contain any results of the composite operation which are available.
The #cause of the error should be inspected for the original error which resulted in this one being thrown.
Instance Attribute Summary collapse
-
#partial_results ⇒ Array<Response>
readonly
An array containing any successful Response from the composite operation.
Instance Method Summary collapse
-
#initialize(partial_results:) ⇒ CompositeOperationError
constructor
A new instance of CompositeOperationError.
Constructor Details
#initialize(partial_results:) ⇒ CompositeOperationError
Returns a new instance of CompositeOperationError.
224 225 226 |
# File 'lib/oci/errors.rb', line 224 def initialize(partial_results:) @partial_results = partial_results end |