Exception: Seahorse::Client::Http2StreamInitializeError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/seahorse/client/networking_error.rb

Overview

Raised when connection failed to initialize a new stream

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error) ⇒ Http2StreamInitializeError

Returns a new instance of Http2StreamInitializeError.



31
32
33
# File 'lib/seahorse/client/networking_error.rb', line 31

def initialize(error)
  @original_error = error
end

Instance Attribute Details

#original_errorHTTP2::Error (readonly)

Returns:

  • (HTTP2::Error)


36
37
38
# File 'lib/seahorse/client/networking_error.rb', line 36

def original_error
  @original_error
end