Exception: Google::APIClient::TransmissionError
- Inherits:
-
StandardError
- Object
- StandardError
- Google::APIClient::TransmissionError
- Defined in:
- lib/google/api_client/errors.rb
Overview
An error which is raised when there is an unexpected response or other transport error that prevents an operation from succeeding.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#result ⇒ Object
readonly
Returns the value of attribute result.
Instance Method Summary collapse
-
#initialize(message = nil, result = nil) ⇒ TransmissionError
constructor
A new instance of TransmissionError.
Constructor Details
#initialize(message = nil, result = nil) ⇒ TransmissionError
Returns a new instance of TransmissionError.
23 24 25 26 |
# File 'lib/google/api_client/errors.rb', line 23 def initialize( = nil, result = nil) super() @result = result end |
Instance Attribute Details
#result ⇒ Object (readonly)
Returns the value of attribute result.
22 23 24 |
# File 'lib/google/api_client/errors.rb', line 22 def result @result end |