Class: SecretHub::APIError

Inherits:
SecretHubError
  • Object
show all
Defined in:
lib/secret_hub/exceptions.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ APIError

Returns a new instance of APIError.



9
10
11
12
# File 'lib/secret_hub/exceptions.rb', line 9

def initialize(response)
  @response = response
  super "[#{response.code}] #{response.body}"
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



7
8
9
# File 'lib/secret_hub/exceptions.rb', line 7

def response
  @response
end