Exception: Silo::FileNotFoundError
- Inherits:
-
StandardError
- Object
- StandardError
- Silo::FileNotFoundError
- Defined in:
- lib/silo/errors.rb
Overview
Raised when trying to restore files from a repository that do not exist.
Instance Method Summary collapse
-
#initialize(path) ⇒ FileNotFoundError
constructor
Creates an instance of FileNotFoundError for the given file path.
Constructor Details
#initialize(path) ⇒ FileNotFoundError
Creates an instance of FileNotFoundError for the given file path
27 28 29 |
# File 'lib/silo/errors.rb', line 27 def initialize(path) super "File not found: '#{path}'" end |