Exception: Liri::FileNotFoundError

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

Overview

EXCEPTIONS

Instance Method Summary collapse

Constructor Details

#initialize(file_path) ⇒ FileNotFoundError

Returns a new instance of FileNotFoundError.



116
117
118
119
# File 'lib/liri.rb', line 116

def initialize(file_path)
  msg = "File not found #{file_path}"
  super(msg)
end