class Google::Cloud::ErrorReporting::ErrorReporterError

# ErrorReporterError

@private Used to indicate a problem reporting errors. This can occur when the calling the API returns an error.

Attributes

error_event[R]

@!attribute [r] error_event

@return [Array<Google::Cloud::ErrorReporting::ErrorEvent>] The
individual error event that was not reported to Stackdriver Error
Reporting service.

Public Class Methods

new(message, error_event = nil) click to toggle source
Calls superclass method
# File lib/google/cloud/error_reporting/async_error_reporter.rb, line 55
def initialize message, error_event = nil
  super message
  @error_event = error_event
end