Class: Savon::HTTPError
Instance Attribute Summary collapse
-
#http ⇒ Object
readonly
Returns the value of attribute http.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(http) ⇒ HTTPError
constructor
A new instance of HTTPError.
- #to_hash ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(http) ⇒ HTTPError
Returns a new instance of HTTPError.
10 11 12 |
# File 'lib/savon/http_error.rb', line 10 def initialize(http) @http = http end |
Instance Attribute Details
#http ⇒ Object (readonly)
Returns the value of attribute http.
14 15 16 |
# File 'lib/savon/http_error.rb', line 14 def http @http end |
Class Method Details
.present?(http) ⇒ Boolean
6 7 8 |
# File 'lib/savon/http_error.rb', line 6 def self.present?(http) http.error? end |
Instance Method Details
#to_hash ⇒ Object
22 23 24 |
# File 'lib/savon/http_error.rb', line 22 def to_hash { :code => @http.code, :headers => @http.headers, :body => @http.body } end |
#to_s ⇒ Object
16 17 18 19 20 |
# File 'lib/savon/http_error.rb', line 16 def to_s String.new("HTTP error (#{@http.code})").tap do |str_error| str_error << ": #{@http.body}" unless @http.body.empty? end end |