Exception: Parser::FileNotFoundError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/parser.rb

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ FileNotFoundError

Returns a new instance of FileNotFoundError.



5
6
7
# File 'lib/parser.rb', line 5

def initialize(path)
  super("File not found for path: [#{path}]")
end