Exception: Fieldhand::NetworkError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/fieldhand/network_error.rb

Overview

Custom exception to handle connection errors and invalid requests

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, response = nil) ⇒ NetworkError

Returns a new instance of NetworkError.



6
7
8
9
# File 'lib/fieldhand/network_error.rb', line 6

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

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



4
5
6
# File 'lib/fieldhand/network_error.rb', line 4

def response
  @response
end