Exception: Skylight::Util::HTTP::StartError Private

Inherits:
StandardError
  • Object
show all
Defined in:
lib/skylight/util/http.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error) ⇒ StartError

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of StartError.



32
33
34
35
# File 'lib/skylight/util/http.rb', line 32

def initialize(error)
  @original = error
  super error.inspect
end

Instance Attribute Details

#originalObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



30
31
32
# File 'lib/skylight/util/http.rb', line 30

def original
  @original
end