class OCI::Errors::CompositeOperationError

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.

Attributes

partial_results[R]

An array containing any successful {OCI::Response} from the composite operation @return [Array<Response>]

Public Class Methods

new(partial_results:) click to toggle source
# File lib/oci/errors.rb, line 224
def initialize(partial_results:)
  @partial_results = partial_results
end