Skip to content

Instantly share code, notes, and snippets.

@taisyo7333
Created January 24, 2016 09:33
Show Gist options
  • Save taisyo7333/13fadd3928c47ee0003c to your computer and use it in GitHub Desktop.
Save taisyo7333/13fadd3928c47ee0003c to your computer and use it in GitHub Desktop.
Ruby Exception $!
# encoding: SJIS
begin
1/0
rescue ZeroDivisionError
p $!.class # => ZeroDivisionError
raise # => ZeroDivisionError
end
>ruby Code3-162.rb
ruby Code3-162.rb
ZeroDivisionError
Code3-162.rb:3:in `/': divided by 0 (ZeroDivisionError)
from Code3-162.rb:3:in `<main>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment