Exception: Rubikon::MissingArgumentError

Inherits:
ArgumentError
  • Object
show all
Defined in:
lib/rubikon/errors.rb

Overview

Raised by parameters that have been supplied with not all required arguments

See Also:

Author:

  • Sebastian Staudt

Since:

  • 0.1.0

Instance Method Summary collapse

Constructor Details

#initialize(parameter) ⇒ MissingArgumentError

Returns a new instance of MissingArgumentError.

Since:

  • 0.1.0



39
40
41
# File 'lib/rubikon/errors.rb', line 39

def initialize(parameter)
  super "Parameter #{parameter} is missing one or more arguments."
end