るりまサーチ

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

別のキーワード

  1. _builtin exception
  2. exception exception
  3. bigdecimal exception_zerodivide
  4. bigdecimal exception_nan
  5. bigdecimal exception_infinity

ライブラリ

検索結果

Exception#inspect -> String (27142.0)

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

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

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