Exception: Fieldhand::NetworkError
- Inherits:
-
StandardError
- Object
- StandardError
- Fieldhand::NetworkError
- Defined in:
- lib/fieldhand/network_error.rb
Overview
Custom exception to handle connection errors and invalid requests
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(message, response = nil) ⇒ NetworkError
constructor
A new instance of NetworkError.
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(, response = nil) super() @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
4 5 6 |
# File 'lib/fieldhand/network_error.rb', line 4 def response @response end |