Skip to content

Instantly share code, notes, and snippets.

@nthj
Created December 10, 2013 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nthj/7896769 to your computer and use it in GitHub Desktop.
Save nthj/7896769 to your computer and use it in GitHub Desktop.
class VeryVeryBadException < RuntimeError
end
begin
raise VeryVeryBadException, "winter is coming"
rescue VeryVeryBadException => error
puts error.message
puts "rescued and continuing on"
ensure
puts "FINALLY!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment