Exception: Flexirest::HTTPException
- Inherits:
-
RequestException
- Object
- StandardError
- RequestException
- Flexirest::HTTPException
- Defined in:
- lib/flexirest/request.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#request_url ⇒ Object
Returns the value of attribute request_url.
-
#result ⇒ Object
Returns the value of attribute result.
-
#status ⇒ Object
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(options) ⇒ HTTPException
constructor
A new instance of HTTPException.
- #message ⇒ Object
Constructor Details
#initialize(options) ⇒ HTTPException
Returns a new instance of HTTPException.
720 721 722 723 724 725 726 |
# File 'lib/flexirest/request.rb', line 720 def initialize() @status = [:status] @result = [:result] @request_url = [:url] @raw_response = [:raw_response] @method = [:method] end |
Instance Attribute Details
#request_url ⇒ Object
Returns the value of attribute request_url.
719 720 721 |
# File 'lib/flexirest/request.rb', line 719 def request_url @request_url end |
#result ⇒ Object
Returns the value of attribute result.
719 720 721 |
# File 'lib/flexirest/request.rb', line 719 def result @result end |
#status ⇒ Object
Returns the value of attribute status.
719 720 721 |
# File 'lib/flexirest/request.rb', line 719 def status @status end |
Instance Method Details
#message ⇒ Object
728 729 730 |
# File 'lib/flexirest/request.rb', line 728 def "Sending #{@method.upcase} to '#{@request_url}' returned a #{@status} with the body of - #{@raw_response}" end |