class Autorespawn::FileNotFound

Exception raised when a path cannot be resolved to a file on disk

Attributes

path[R]

@return [Pathname] the path to resolve

search_path[R]

@return [Array<Pathname>] the search path that was provided to resolve

{#path}. It is always empty if {#path} is absolute

Public Class Methods

new(path, search_path) click to toggle source
# File lib/autorespawn/exceptions.rb, line 10
def initialize(path, search_path)
    @path, @search_path = path, search_path
end