class Google::APIClient::TransmissionError

An error which is raised when there is an unexpected response or other transport error that prevents an operation from succeeding.

Attributes

result[R]

Public Class Methods

new(message = nil, result = nil) click to toggle source
Calls superclass method
# File lib/google/api_client/errors.rb, line 23
def initialize(message = nil, result = nil)
  super(message)
  @result = result
end