class ArTTY::Error::ArtNotFound

Public Class Methods

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