Exception: PgDice::InsufficientFutureTablesError

Inherits:
InsufficientTablesError show all
Defined in:
lib/pgdice/error.rb

Overview

Error thrown when the count of future tables is less than the expected amount

Instance Method Summary collapse

Constructor Details

#initialize(table_name, expected, period, found_count) ⇒ InsufficientFutureTablesError

Returns a new instance of InsufficientFutureTablesError.



34
35
36
# File 'lib/pgdice/error.rb', line 34

def initialize(table_name, expected, period, found_count)
  super('future', table_name, expected, period, found_count)
end