class Fontist::Errors::MissingFontError
Public Class Methods
Source
# File lib/fontist/errors.rb, line 88 def initialize(font, style = nil) name = prepare_name(font, style) msg = "#{name} font is missing, please run `fontist install '#{font}'` to download the font." super(msg, font, style) end
Calls superclass method
Fontist::Errors::FontError::new