Exception: Beaconpush::ResponseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/beaconpush/response_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ResponseError

Returns a new instance of ResponseError.



5
6
7
8
# File 'lib/beaconpush/response_error.rb', line 5

def initialize(response)
  @response = response
  super(message)
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



3
4
5
# File 'lib/beaconpush/response_error.rb', line 3

def response
  @response
end

Instance Method Details

#messageObject



10
11
12
# File 'lib/beaconpush/response_error.rb', line 10

def message
  JSON.parse(response.body.to_s)["message"] rescue "Server responded with an error"
end