るりまサーチ (Ruby 3.3)

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. fiddle type_intptr_t
  4. fiddle align_intptr_t
  5. t61string new

ライブラリ

検索結果

Exception#inspect -> String (99661.0)

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

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

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