Exception: Meibo::CsvFileNotFoundError

Inherits:
Error
  • Object
show all
Defined in:
lib/meibo/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message = nil, filename:, **kw) ⇒ CsvFileNotFoundError

Returns a new instance of CsvFileNotFoundError.



9
10
11
12
13
# File 'lib/meibo/errors.rb', line 9

def initialize(message = nil, filename:, **kw)
  super(message, **kw)

  @filename = filename
end

Instance Attribute Details

#filenameObject (readonly)

Returns the value of attribute filename.



7
8
9
# File 'lib/meibo/errors.rb', line 7

def filename
  @filename
end