Exception: PgDice::InsufficientFutureTablesError
- Inherits:
-
InsufficientTablesError
- Object
- StandardError
- Error
- InsufficientTablesError
- PgDice::InsufficientFutureTablesError
- 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
-
#initialize(table_name, expected, period, found_count) ⇒ InsufficientFutureTablesError
constructor
A new instance of InsufficientFutureTablesError.
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 |