class Fig::FileNotFoundError
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.
Attributes
path[R]
Public Class Methods
new(message, path)
click to toggle source
Calls superclass method
# File lib/fig/file_not_found_error.rb, line 10 def initialize(message, path) super(message) @path = path end