Exception: Purview::Exceptions::RowsOutsideWindowForTable
Instance Method Summary collapse
-
#initialize(table, count) ⇒ RowsOutsideWindowForTable
constructor
A new instance of RowsOutsideWindowForTable.
- #message ⇒ Object
Constructor Details
#initialize(table, count) ⇒ RowsOutsideWindowForTable
Returns a new instance of RowsOutsideWindowForTable.
4 5 6 7 |
# File 'lib/purview/exceptions/rows_outside_window_for_table.rb', line 4 def initialize(table, count) super(table) @count = count end |
Instance Method Details
#message ⇒ Object
9 10 11 |
# File 'lib/purview/exceptions/rows_outside_window_for_table.rb', line 9 def "#{count} row(s) outside window for table: #{table.name}" end |