class SimpleImagesDownloader::Errors::DestinationIsNotWritable

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/simple_images_downloader/errors.rb, line 50
def initialize(path)
  message = "The destination is not writable move file manually at #{path}"
  super(message)
end