Skip to content

Instantly share code, notes, and snippets.

@thiagoa
Last active December 12, 2016 16:41
Show Gist options
  • Save thiagoa/75f4a4e98effe8e94f1000d1d73e2726 to your computer and use it in GitHub Desktop.
Save thiagoa/75f4a4e98effe8e94f1000d1d73e2726 to your computer and use it in GitHub Desktop.
Twitter Timeline Hub call method rescuing not found exception
def call(user, count: 20)
tweets = fetch_user_timeline(user, count: count)
Result.new(:ok, tweets)
rescue Twitter::Error::NotFound
Result.new(:not_found, [])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment