Exception: Liri::FileNotFoundError
- Inherits:
-
StandardError
- Object
- StandardError
- Liri::FileNotFoundError
- Defined in:
- lib/liri.rb
Overview
EXCEPTIONS
Instance Method Summary collapse
-
#initialize(file_path) ⇒ FileNotFoundError
constructor
A new instance of FileNotFoundError.
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 |