class PgDice::InsufficientPastTablesError
Error
thrown when the count of past 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 41 def initialize(table_name, expected, period, found_count) super('past', table_name, expected, period, found_count) end