class PgDice::InsufficientFutureTablesError

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

Public Class Methods

new(table_name, expected, period, found_count) click to toggle source
Calls superclass method PgDice::InsufficientTablesError::new
# File lib/pgdice/error.rb, line 34
def initialize(table_name, expected, period, found_count)
  super('future', table_name, expected, period, found_count)
end