class PgDice::MissingConfigurationFileError
Error
thrown if the config file specified does not exist.
Public Class Methods
new(config_file)
click to toggle source
Calls superclass method
# File lib/pgdice/error.rb, line 67 def initialize(config_file) super("File: '#{config_file}' could not be found or does not exist. Is this the correct file path?") end