class Fontist::Errors::PlatformMismatchError
Attributes
Public Class Methods
Source
# File lib/fontist/errors.rb, line 143 def initialize(font_name, required_platforms, current_platform) @required_platforms = Array(required_platforms) @current_platform = current_platform msg = build_message(font_name) super(msg, font_name) end
Calls superclass method
Fontist::Errors::FontError::new