Exception: DevFlow::TargetProcess::RequestError
- Inherits:
-
StandardError
- Object
- StandardError
- DevFlow::TargetProcess::RequestError
- Defined in:
- lib/devflow/target_process/error.rb
Instance Attribute Summary collapse
-
#request ⇒ Object
readonly
Returns the value of attribute request.
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ RequestError
constructor
A new instance of RequestError.
Constructor Details
#initialize(response) ⇒ RequestError
Returns a new instance of RequestError.
6 7 8 9 10 11 |
# File 'lib/devflow/target_process/error.rb', line 6 def initialize(response) @response = response @request = response.request super("Error from TP: #{response.code} - #{response.body}") end |
Instance Attribute Details
#request ⇒ Object (readonly)
Returns the value of attribute request.
4 5 6 |
# File 'lib/devflow/target_process/error.rb', line 4 def request @request end |
#response ⇒ Object (readonly)
Returns the value of attribute response.
4 5 6 |
# File 'lib/devflow/target_process/error.rb', line 4 def response @response end |