Exception: Arrolio::RenderError
- Defined in:
- lib/arrolio/error.rb
Overview
Raised by Renderer::* when the render pass fails.
Instance Attribute Summary collapse
-
#missing_fonts ⇒ Object
readonly
Returns the value of attribute missing_fonts.
Instance Method Summary collapse
-
#initialize(message, missing_fonts: nil) ⇒ RenderError
constructor
A new instance of RenderError.
Constructor Details
#initialize(message, missing_fonts: nil) ⇒ RenderError
Returns a new instance of RenderError.
25 26 27 28 |
# File 'lib/arrolio/error.rb', line 25 def initialize(, missing_fonts: nil) @missing_fonts = missing_fonts super() end |
Instance Attribute Details
#missing_fonts ⇒ Object (readonly)
Returns the value of attribute missing_fonts.
23 24 25 |
# File 'lib/arrolio/error.rb', line 23 def missing_fonts @missing_fonts end |