Skip to content

Instantly share code, notes, and snippets.

@kalorz
Created September 15, 2017 10:13
Show Gist options
  • Save kalorz/db5ececef5a5515d099fffa44b026fbe to your computer and use it in GitHub Desktop.
Save kalorz/db5ececef5a5515d099fffa44b026fbe to your computer and use it in GitHub Desktop.
Ruby Gotchas: Exception
class BangBang < Exception
end
begin
raise BangBang
rescue
puts 'Caught it!'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment