amatriain/feedbunch

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

## Error raised when a user tries to create a new folder with the same title as another of his folders.
#
# It inherits from StandardError, implements no new methods or attributes.

class FolderAlreadyExistsError < StandardError
end