Class Mack::Errors::RequiredGeneratorParameterMissing
In: lib/mack/errors/errors.rb
Parent: StandardError

Raised if a Mack::Generator::Base required parameter is not supplied.

Methods

new  

Public Class methods

Takes the name of the missing parameter.

[Source]

    # File lib/mack/errors/errors.rb, line 86
86:       def initialize(name)
87:         super("The required parameter '#{name.to_s.upcase}' is missing for this generator!")
88:       end

[Validate]