るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.040秒)

別のキーワード

  1. _builtin yield_self
  2. object yield_self
  3. _builtin self
  4. tracepoint self
  5. rdoc/code_object document_self

ライブラリ

検索結果

Exception#inspect -> String (30143.0)

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

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

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