Exception: Flexirest::HTTPException

Inherits:
RequestException show all
Defined in:
lib/flexirest/request.rb

Direct Known Subclasses

HTTPClientException, HTTPServerException

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ HTTPException

Returns a new instance of HTTPException.



789
790
791
792
793
794
795
# File 'lib/flexirest/request.rb', line 789

def initialize(options)
  @status = options[:status]
  @result = options[:result]
  @request_url = options[:url]
  @raw_response = options[:raw_response]
  @method = options[:method]
end

Instance Attribute Details

#request_urlObject

Returns the value of attribute request_url.



788
789
790
# File 'lib/flexirest/request.rb', line 788

def request_url
  @request_url
end

#resultObject

Returns the value of attribute result.



788
789
790
# File 'lib/flexirest/request.rb', line 788

def result
  @result
end

#statusObject

Returns the value of attribute status.



788
789
790
# File 'lib/flexirest/request.rb', line 788

def status
  @status
end

Instance Method Details

#messageObject



797
798
799
800
# File 'lib/flexirest/request.rb', line 797

def message
  method = @method.try(:upcase)
  "Sending #{method} to '#{@request_url}' returned a #{@status} with the body of - #{@raw_response}"
end