class Google::Cloud::Trace::AsyncPatchTracesError
Used to indicate a problem when patching traces to the API. This can occur when the API returns an error.
Attributes
traces[R]
@!attribute [r] count
@return [Array<Google::Cloud::Trace::TraceRecord>] traces The trace objects that were not written to the API due to the error.
Public Class Methods
new(message, traces = nil)
click to toggle source
Calls superclass method
# File lib/google/cloud/trace/errors.rb, line 52 def initialize message, traces = nil super message @traces = traces if traces end