るりまサーチ (Ruby 3.2)

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

別のキーワード

  1. getoptlong error_message
  2. etc sc_2_pbs_message
  3. etc sc_message_passing
  4. mkmf message
  5. exception message

ライブラリ

検索結果

Exception#inspect -> String (81409.0)

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

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

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