Exception: Exa::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/exa/error.rb

Direct Known Subclasses

ClientError, ConfigurationError, ServerError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message = nil, response = nil) ⇒ Error

Returns a new instance of Error.



7
8
9
10
# File 'lib/exa/error.rb', line 7

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

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



5
6
7
# File 'lib/exa/error.rb', line 5

def response
  @response
end