るりまサーチ (Ruby 2.7.0)

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

別のキーワード

  1. _builtin exception
  2. exception exception
  3. bigdecimal exception_infinity
  4. bigdecimal exception_nan
  5. thread abort_on_exception

ライブラリ

検索結果

Exception#inspect -> String (117361.0)

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

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

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