Exception: SimpleImagesDownloader::Errors::DestinationIsNotWritable

Inherits:
BaseError
  • Object
show all
Defined in:
lib/simple_images_downloader/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ DestinationIsNotWritable

Returns a new instance of DestinationIsNotWritable.



53
54
55
56
# File 'lib/simple_images_downloader/errors.rb', line 53

def initialize(path)
  message = "The destination is not writable move file manually at #{path}"
  super(message)
end