Method: Fortitude::Errors::TagNotFound#initialize
- Defined in:
- lib/fortitude/errors.rb
#initialize(tag_store, tag_name) ⇒ TagNotFound
Returns a new instance of TagNotFound.
146 147 148 149 150 |
# File 'lib/fortitude/errors.rb', line 146 def initialize(tag_store, tag_name) super(%{The tag store #{tag_store} has no tag named #{tag_name.inspect}.}) @tag_store = tag_store @tag_name = tag_name end |