Exception: Endo::Error::HttpError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/endo/error/http_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, code, body) ⇒ HttpError

Returns a new instance of HttpError.



6
7
8
9
10
# File 'lib/endo/error/http_error.rb', line 6

def initialize(message, code, body)
  super(message)
  @code = code
  @body = body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



4
5
6
# File 'lib/endo/error/http_error.rb', line 4

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



4
5
6
# File 'lib/endo/error/http_error.rb', line 4

def code
  @code
end