Exception: Purview::Exceptions::RowsOutsideWindowForTable

Inherits:
BaseTable show all
Defined in:
lib/purview/exceptions/rows_outside_window_for_table.rb

Instance Method Summary collapse

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

#messageObject



9
10
11
# File 'lib/purview/exceptions/rows_outside_window_for_table.rb', line 9

def message
  "#{count} row(s) outside window for table: #{table.name}"
end