Exception: Puppet::Module::Task::InvalidName

Inherits:
Error show all
Defined in:
lib/puppet/module/task.rb

Instance Attribute Summary

Attributes inherited from Error

#details, #kind

Attributes inherited from Error

#original

Instance Method Summary collapse

Methods inherited from Error

#to_h

Constructor Details

#initialize(name) ⇒ InvalidName

Returns a new instance of InvalidName.



23
24
25
26
# File 'lib/puppet/module/task.rb', line 23

def initialize(name)
  msg = _("Task names must start with a lowercase letter and be composed of only lowercase letters, numbers, and underscores")
  super(msg, 'puppet.tasks/invalid-name')
end