Exception: Fontist::Errors::VariableAxesNotSupportedError

Inherits:
GeneralError
  • Object
show all
Defined in:
lib/fontist/errors.rb

Overview

Variable axes not supported

Instance Method Summary collapse

Constructor Details

#initialize(font_name, requested_axes) ⇒ VariableAxesNotSupportedError

Returns a new instance of VariableAxesNotSupportedError.



239
240
241
242
# File 'lib/fontist/errors.rb', line 239

def initialize(font_name, requested_axes)
  super("Variable axes #{requested_axes.join(', ')} not supported by " \
        "font '#{font_name}'")
end