Tag: Ruby/例外処理
begin rescue => e end
begin resucue Exception => e end
rescue Exception => e # ... raise end
rescue SystemExit, Interrupt raise rescue Exception => e #... end