Method: Fig::FileNotFoundError#initialize

Defined in:
lib/fig/file_not_found_error.rb

#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(message, path)
  super(message)

  @path = path
end