るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.066秒)
トップページ > クエリ:response[x] > クエリ:net::httpexceptions[x]

別のキーワード

  1. net/smtp start
  2. net/http get
  3. net/imap param
  4. net/imap name
  5. net/imap extension

ライブラリ

モジュール

検索結果

Net::HTTPExceptions#response -> Net::HTTPResponse (27225.0)

例外の原因となったレスポンスオブジェクトを返します。

...レスポンスオブジェクトを返します。

//emlist[例][ruby]{
require 'net/http'

uri = "http://www.example.com/invalid.html"
response
= Net::HTTP.get_response(URI.parse(uri))
begin
response
.value
rescue => e
e.response # => #<Net::HTTPNotFound 404 Not Found readbody=true>
end
//}...