amatriain/feedbunch

View on GitHub
FeedBunch-app/app/errors/empty_response_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

## Error raised when no response is returned when trying to fetch a feed.
#
# It inherits from StandardError, implements no new methods or attributes.
#
# It's normally raised from FeedClient#fetch.

class EmptyResponseError < StandardError
end