Created
May 6, 2011 23:26
-
-
Save donpdonp/959999 to your computer and use it in GitHub Desktop.
begin/rescue
This file contains hidden or 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
## before | |
def some_method | |
Tweet.all.each do |tweet| | |
tweet.parse | |
end | |
end | |
## after | |
def some_method | |
Tweet.all.each do |tweet| | |
begin | |
tweet.parse | |
rescue SomeError | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment