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.



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

def initialize(file_path)
  msg = "No se encuentra el archivo #{file_path}"
  super(msg)
end