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.



218
219
220
221
# File 'lib/fontist/errors.rb', line 218

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