Exception: Nomad::HTTPError
- Inherits:
-
NomadError
- Object
- RuntimeError
- NomadError
- Nomad::HTTPError
- Defined in:
- lib/nomad/errors.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#address ⇒ Object
readonly
Returns the value of attribute address.
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(address, response, errors = []) ⇒ HTTPError
constructor
A new instance of HTTPError.
Constructor Details
#initialize(address, response, errors = []) ⇒ HTTPError
Returns a new instance of HTTPError.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/nomad/errors.rb', line 33 def initialize(address, response, errors = []) @address, @response, @errors = address, response, errors @code = response.code.to_i errors = errors.map { |error| " * #{error}" } super <<-EOH The Nomad server at `#{address}' responded with a #{code}. Any additional information the server supplied is shown below: #{errors.join("\n").rstrip} Please refer to the documentation for help. EOH end |
Instance Attribute Details
#address ⇒ Object (readonly)
Returns the value of attribute address.
31 32 33 |
# File 'lib/nomad/errors.rb', line 31 def address @address end |
#code ⇒ Object (readonly)
Returns the value of attribute code.
31 32 33 |
# File 'lib/nomad/errors.rb', line 31 def code @code end |
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
31 32 33 |
# File 'lib/nomad/errors.rb', line 31 def errors @errors end |
#response ⇒ Object (readonly)
Returns the value of attribute response.
31 32 33 |
# File 'lib/nomad/errors.rb', line 31 def response @response end |