class Google::Cloud::ErrorReporting::AsyncErrorReporterError

# AsyncErrorReporterError

@private Used to indicate a problem reporting errors asynchronously. This can occur when there are not enough resources allocated for the amount of usage.

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 36
def initialize message, error_event = nil
  super message
  @error_event = error_event
end