class SimpleImagesDownloader::Errors::MissingFileError

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/simple_images_downloader/errors.rb, line 15
def initialize(path)
  message = "File under #{path} path is absent"
  super(message)
end