class Rubikon::UnknownParameterError

Raised if a parameter has been supplied that does not exist

@author Sebastian Staudt @see Application::DSLMethods#flag @see Application::DSLMethods#option @see Application::DSLMethods#global_flag @see Application::DSLMethods#global_option @since 0.3.0

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/rubikon/errors.rb, line 105
def initialize(name)
  super "Unknown parameter: #{name}"
end