Exception: HTTPError

Inherits:
IOError
  • Object
show all
Defined in:
lib/passbyme2fa-client/http_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ HTTPError

Returns a new instance of HTTPError.



6
7
8
9
# File 'lib/passbyme2fa-client/http_error.rb', line 6

def initialize(response)
  super("An HTTP error occurred!")
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



4
5
6
# File 'lib/passbyme2fa-client/http_error.rb', line 4

def response
  @response
end