Throw a Puppet::DevError with the specified message. Used for unknown or internal application failures.
Parameters:
message used in raised error
Raises:
always raised with the supplied message
10 11 12
# File 'lib/puppet/util/errors.rb', line 10 def devfail(msg) self.fail(Puppet::DevError, msg) end