class RDoc::Store::MissingFileError
Raised when a stored file for a class, module, page or method is missing.
Attributes
The store the file should exist in
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/rdoc-6.13.0/lib/rdoc/store.rb, line 57 def initialize store, file, name @store = store @file = file @name = name end
Creates a new MissingFileError
for the missing file
for the given name
that should have been in the store
.