amatriain/feedbunch

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

## Error raised when a user tries to perform an action which requires to be subscribed, on a feed
# to which he's not subscribed.
#
# It inherits from StandardError, implements no new methods or attributes.

class NotSubscribedError < StandardError
end