Skip to Content Skip to Search

Raised when a stored file for a class, module, page or method is missing.

Methods
N

Attributes

[R] file

The file the name should be saved as

[R] name

The name of the object the file would be loaded from

[R] store

The store the file should exist in

Class Public methods

new(store, file, name)

Creates a new MissingFileError for the missing file for the given name that should have been in the store.

# File ruby/lib/rdoc/store.rb, line 57
def initialize store, file, name
  @store = store
  @file  = file
  @name  = name
end