class ArTTY::Error::ImageNotFound

Public Class Methods

new(image = nil) click to toggle source
Calls superclass method
# File lib/arTTY/error/image_not_found.rb, line 2
def initialize(image = nil)
    super("Image not found: #{image}") if (image && !image.empty?)
    super("Image not found") if (image.nil?)
end