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