Exception: Fig::FileNotFoundError
- Inherits:
-
StandardError
- Object
- StandardError
- Fig::FileNotFoundError
- Defined in:
- lib/fig/file_not_found_error.rb
Overview
A (possibly remote) file that was looked for was not found. This may or may not actually be a problem; i.e. this may be the result of an existence test.
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(message, path) ⇒ FileNotFoundError
constructor
A new instance of FileNotFoundError.
Constructor Details
#initialize(message, path) ⇒ FileNotFoundError
Returns a new instance of FileNotFoundError.
10 11 12 13 14 |
# File 'lib/fig/file_not_found_error.rb', line 10 def initialize(, path) super() @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
8 9 10 |
# File 'lib/fig/file_not_found_error.rb', line 8 def path @path end |