inspect -> String
[permalink][rdoc][edit]-
self のクラス名と message を文字列にして返します。
begin raise "exception" rescue p $!.inspect # => "#<RuntimeError: exception>" end
inspect -> String
[permalink][rdoc][edit]self のクラス名と message を文字列にして返します。
begin
raise "exception"
rescue
p $!.inspect # => "#<RuntimeError: exception>"
end