Is it possible to add more than one rescue in a begin loop and/or a function and still have a next as well for each?
For example:
begin twitter_function
rescue Twitter::Error::RateLimit => error
next
rescue Twitter::Error::Unauthorized => error
next
end