Exception: Postsvg::RenderError
- Defined in:
- lib/postsvg/errors.rb
Overview
PS -> SVG execution failed.
Direct Known Subclasses
RecursionLimitError, SizeLimitError, StackUnderflowError, UndefinedOperatorError
Instance Attribute Summary collapse
-
#operator_name ⇒ Object
readonly
Returns the value of attribute operator_name.
Instance Method Summary collapse
-
#initialize(message, operator_name: nil) ⇒ RenderError
constructor
A new instance of RenderError.
Constructor Details
#initialize(message, operator_name: nil) ⇒ RenderError
Returns a new instance of RenderError.
29 30 31 32 |
# File 'lib/postsvg/errors.rb', line 29 def initialize(, operator_name: nil) @operator_name = operator_name super() end |
Instance Attribute Details
#operator_name ⇒ Object (readonly)
Returns the value of attribute operator_name.
27 28 29 |
# File 'lib/postsvg/errors.rb', line 27 def operator_name @operator_name end |