Exception: CapsuleCRM::Errors::ResponseError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ResponseError

Returns a new instance of ResponseError.



6
7
8
# File 'lib/capsule_crm/errors/response_error.rb', line 6

def initialize(response)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



4
5
6
# File 'lib/capsule_crm/errors/response_error.rb', line 4

def response
  @response
end

Instance Method Details

#to_sObject



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

def to_s
  response_message || empty_message
end