Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Exceptionクラス > inspect
inspect -> String
self のクラス名と message を文字列にして返します。
例:
begin raise "exception" rescue p $!.inspect # => "#<RuntimeError: exception>" end