Exception: EasyBroker::Error

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

Direct Known Subclasses

AuthenticationError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, response) ⇒ Error

Returns a new instance of Error.



5
6
7
8
# File 'lib/easy_broker/errors.rb', line 5

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

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



3
4
5
# File 'lib/easy_broker/errors.rb', line 3

def response
  @response
end