Skip to content

Instantly share code, notes, and snippets.

@donpdonp
Created May 6, 2011 23:26
Show Gist options
  • Save donpdonp/959999 to your computer and use it in GitHub Desktop.
Save donpdonp/959999 to your computer and use it in GitHub Desktop.
begin/rescue
## 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