るりまサーチ (Ruby 2.4.0)

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

別のキーワード

  1. psych tag
  2. psych tag=
  3. psych yaml_tag
  4. scalar tag
  5. rss tag_name

クラス

検索結果

UncaughtThrowError#to_s -> String (54394.0)

self を tag を含む文字列表現にして返します。

self を tag を含む文字列表現にして返します。

//emlist[例][ruby]{
def do_complicated_things
throw :uncaught_label
end

begin
do_complicated_things
rescue UncaughtThrowError => ex
p ex.to_s # => "uncaught throw :uncaught_label"
end
//}