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