1件ヒット
[1-1件を表示]
(0.033秒)
検索結果
-
Exception
# inspect -> String (54331.0) -
self のクラス名と message を文字列にして返します。
...self のクラス名と message を文字列にして返します。
//emlist[例][ruby]{
begin
raise "exception"
rescue
p $!.inspect # => "#<RuntimeError: exception>"
end
//}...