amatriain/feedbunch

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

## Error raised when a user tries to perform an operation with a folder he doesn't own.
#
# It inherits from StandardError, implements no new methods or attributes.

class FolderNotOwnedByUserError < StandardError
end