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.



759
760
761
762
763
764
765
# File 'lib/flexirest/request.rb', line 759

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.



758
759
760
# File 'lib/flexirest/request.rb', line 758

def request_url
  @request_url
end

#resultObject

Returns the value of attribute result.



758
759
760
# File 'lib/flexirest/request.rb', line 758

def result
  @result
end

#statusObject

Returns the value of attribute status.



758
759
760
# File 'lib/flexirest/request.rb', line 758

def status
  @status
end

Instance Method Details

#messageObject



767
768
769
770
# File 'lib/flexirest/request.rb', line 767

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