るりまサーチ

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

別のキーワード

  1. _builtin except
  2. env except
  3. hash except
  4. except
  5. except _builtin

ライブラリ

クラス

検索結果

Exception#inspect -> String (21107.0)

self のクラス名と message を文字列にして返します。

...self のクラス名と message を文字列にして返します。

//emlist[例][ruby]{
begin
raise "exception"
rescue
p $!.inspect # => "#<RuntimeError: exception>"
end
//}...