Exception: Threatinator::Exceptions::FeedFileNotFoundError

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

Instance Method Summary collapse

Constructor Details

#initialize(filename) ⇒ FeedFileNotFoundError

Returns a new instance of FeedFileNotFoundError.



54
55
56
57
# File 'lib/threatinator/exceptions.rb', line 54

def initialize(filename)
  @filename = filename
  super("Failed to open/read feed file '#{filename}'")
end