Skip to content

Instantly share code, notes, and snippets.

@taisyo7333
Last active January 24, 2016 09:31
Show Gist options
  • Save taisyo7333/c850c0da69b195383456 to your computer and use it in GitHub Desktop.
Save taisyo7333/c850c0da69b195383456 to your computer and use it in GitHub Desktop.
Ruby Exception object
# encoding: SJIS
begin
1/0
rescue ZeroDivisionError => e
p e.backtrace
end
>ruby Code3-161.rb
ruby Code3-161.rb
["Code3-161.rb:3:in `/'", "Code3-161.rb:3:in `<main>'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment