るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.076秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:class[x] > クラス:Net::HTTPResponse[x]

別のキーワード

  1. argf.class each
  2. argf.class each_line
  3. argf.class lines
  4. class new
  5. argf.class gets

ライブラリ

検索結果

Net::HTTPResponse#value -> nil (8.0)

レスポンスが 2xx(成功)でなかった場合に、対応する 例外を発生させます。

...lue # => nil
//}

//emlist[例 レスポンスが 2xx以外][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.class # => Net::HTTPServerException
e.message # => 404 "Not Found"
end
//}...