Exception: RestClient::RequestFailed

Inherits:
ExceptionWithResponse show all
Defined in:
lib/restclient/exceptions.rb

Overview

The request failed with an error code not managed by the code

Instance Attribute Summary

Attributes inherited from Exception

#response

Instance Method Summary collapse

Methods inherited from Exception

#http_body, #http_code, #initialize, #inspect

Constructor Details

This class inherits a constructor from RestClient::Exception

Instance Method Details

#messageObject



128
129
130
# File 'lib/restclient/exceptions.rb', line 128

def message
  "HTTP status code #{http_code}"
end

#to_sObject



132
133
134
# File 'lib/restclient/exceptions.rb', line 132

def to_s
  message
end