Created
October 23, 2015 10:57
-
-
Save JonnieCache/f95d4e0f2ab494d8f596 to your computer and use it in GitHub Desktop.
exception question
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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