class OCI::Errors::MultipartUploadError
Raised when there is an error performing a multipart upload (either a new upload or resuming an existing upload).
Attributes
errors[R]
An array containing the underlying errors which caused the failure @return [Array]
upload_id[R]
The ID of multipart upload against which the error occurred, if known. This may be useful for resuming uploads which failed because of intermittent issues (e.g. network connectivity or HTTP 5xx errors received from the service) @return [String]
Public Class Methods
new(message, errors = [], upload_id = nil)
click to toggle source
Calls superclass method
# File lib/oci/errors.rb, line 206 def initialize(message, errors = [], upload_id = nil) super(message) @errors = errors @upload_id = upload_id end