Exception: RDoc::Store::MissingFileError
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: 
          self,
           Error,::RDoc::Error,
          RuntimeError | |
| Instance Chain: 
          self,
           Error,::RDoc::Error,
          RuntimeError | |
| Inherits: | RDoc::Store::Error 
 | 
| Defined in: | lib/rdoc/store.rb | 
Overview
Raised when a stored file for a class, module, page or method is missing.
Class Method Summary
- .new(store, file, name) ⇒ MissingFileError constructor
Instance Attribute Summary
Instance Method Summary
- #message Internal use only
Constructor Details
    .new(store, file, name)  ⇒ MissingFileError 
  
Instance Attribute Details
#file (readonly)
The file the #name should be saved as
# File 'lib/rdoc/store.rb', line 46
attr_reader :file
#name (readonly)
The name of the object the #file would be loaded from
# File 'lib/rdoc/store.rb', line 51
attr_reader :name
#store (readonly)
The store the file should exist in
# File 'lib/rdoc/store.rb', line 41
attr_reader :store
Instance Method Details
#message
    This method is for internal use only.
  
  [ GitHub ]
# File 'lib/rdoc/store.rb', line 63
def # :nodoc: "store at #{@store.path} missing file #{@file} for #{@name}" end