Skip to content

Instantly share code, notes, and snippets.

@JonnieCache
Created October 23, 2015 10:57
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 JonnieCache/f95d4e0f2ab494d8f596 to your computer and use it in GitHub Desktop.
Save JonnieCache/f95d4e0f2ab494d8f596 to your computer and use it in GitHub Desktop.
exception question
begin
raise FooError, "abc"
rescue FooError => e
raise e if e.message == "abc"
rescue => e
# i want to get here
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment