Exception: Fontist::Errors::VariableAxesNotSupportedError
- Inherits:
-
GeneralError
- Object
- StandardError
- GeneralError
- Fontist::Errors::VariableAxesNotSupportedError
- Defined in:
- lib/fontist/errors.rb
Overview
Variable axes not supported
Instance Method Summary collapse
-
#initialize(font_name, requested_axes) ⇒ VariableAxesNotSupportedError
constructor
A new instance of VariableAxesNotSupportedError.
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 |