Exception: LiquidXlsx::UnsupportedTemplateError
- Defined in:
- lib/liquid_xlsx/errors.rb
Instance Attribute Summary collapse
-
#block_rows ⇒ Object
readonly
Returns the value of attribute block_rows.
-
#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.
Instance Method Summary collapse
-
#initialize(message, sheet: nil, row: nil, cell: nil, block_rows: nil) ⇒ UnsupportedTemplateError
constructor
A new instance of UnsupportedTemplateError.
Constructor Details
#initialize(message, sheet: nil, row: nil, cell: nil, block_rows: nil) ⇒ UnsupportedTemplateError
Returns a new instance of UnsupportedTemplateError.
57 58 59 60 61 62 63 |
# File 'lib/liquid_xlsx/errors.rb', line 57 def initialize(, sheet: nil, row: nil, cell: nil, block_rows: nil) @sheet = sheet @row = row @cell = cell @block_rows = block_rows super(()) end |
Instance Attribute Details
#block_rows ⇒ Object (readonly)
Returns the value of attribute block_rows.
55 56 57 |
# File 'lib/liquid_xlsx/errors.rb', line 55 def block_rows @block_rows end |
#cell ⇒ Object (readonly)
Returns the value of attribute cell.
55 56 57 |
# File 'lib/liquid_xlsx/errors.rb', line 55 def cell @cell end |
#row ⇒ Object (readonly)
Returns the value of attribute row.
55 56 57 |
# File 'lib/liquid_xlsx/errors.rb', line 55 def row @row end |
#sheet ⇒ Object (readonly)
Returns the value of attribute sheet.
55 56 57 |
# File 'lib/liquid_xlsx/errors.rb', line 55 def sheet @sheet end |