Exception: LoogiHttp::ServerError

Inherits:
Error
  • Object
show all
Defined in:
lib/loogi_http/error.rb

Direct Known Subclasses

ConnectionFailed, TimeoutError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error) ⇒ ServerError

Returns a new instance of ServerError.



7
8
9
10
# File 'lib/loogi_http/error.rb', line 7

def initialize(error)
  @error = error
  set_backtrace(error.backtrace)
end

Instance Attribute Details

#errorObject (readonly)

Returns the value of attribute error.



5
6
7
# File 'lib/loogi_http/error.rb', line 5

def error
  @error
end

Instance Method Details

#messageObject



12
13
14
# File 'lib/loogi_http/error.rb', line 12

def message
  error.message
end