Exception: LiquidXlsx::TemplateSyntaxError
- Defined in:
- lib/liquid_xlsx/errors.rb
Instance Attribute Summary collapse
-
#cell ⇒ Object
readonly
Returns the value of attribute cell.
-
#row ⇒ Object
readonly
Returns the value of attribute row.
-
#sheet ⇒ Object
readonly
Returns the value of attribute sheet.
-
#tag ⇒ Object
readonly
Returns the value of attribute tag.
Instance Method Summary collapse
-
#initialize(message, sheet: nil, row: nil, cell: nil, tag: nil) ⇒ TemplateSyntaxError
constructor
A new instance of TemplateSyntaxError.
Constructor Details
#initialize(message, sheet: nil, row: nil, cell: nil, tag: nil) ⇒ TemplateSyntaxError
Returns a new instance of TemplateSyntaxError.
9 10 11 12 13 14 15 |
# File 'lib/liquid_xlsx/errors.rb', line 9 def initialize(, sheet: nil, row: nil, cell: nil, tag: nil) @sheet = sheet @row = row @cell = cell @tag = tag super(()) end |
Instance Attribute Details
#cell ⇒ Object (readonly)
Returns the value of attribute cell.
7 8 9 |
# File 'lib/liquid_xlsx/errors.rb', line 7 def cell @cell end |
#row ⇒ Object (readonly)
Returns the value of attribute row.
7 8 9 |
# File 'lib/liquid_xlsx/errors.rb', line 7 def row @row end |
#sheet ⇒ Object (readonly)
Returns the value of attribute sheet.
7 8 9 |
# File 'lib/liquid_xlsx/errors.rb', line 7 def sheet @sheet end |
#tag ⇒ Object (readonly)
Returns the value of attribute tag.
7 8 9 |
# File 'lib/liquid_xlsx/errors.rb', line 7 def tag @tag end |