docbrown/app/services/twitter_client/errors.rb
rhymes 300ba1b33f
[deploy] Decouple Twitter authentication from fetching tweets (#7920)
* Add TwitterClient::Client

* Use TwitterClient::Client for Tweet

* Test retweets

* Test assignment to user

* Fix TweetTag spec

* Remove TwitterBot

* Fix some specs

* Fix RSS Reader specs
2020-05-19 18:05:41 -04:00

15 lines
207 B
Ruby

module TwitterClient
module Errors
class Error < StandardError
end
class ClientError < Error
end
class ServerError < Error
end
class NotFound < ClientError
end
end
end