class PgDice::InvalidConfigurationError

Error thrown if you provide bad data in a configuration

Public Class Methods

new(message) click to toggle source
Calls superclass method
# File lib/pgdice/error.rb, line 60
def initialize(message)
  super("PgDice is not configured properly. #{message}")
end