Method: Puppet::Util::Errors#devfail
- Defined in:
- lib/puppet/util/errors.rb
#devfail(msg) ⇒ Object
Throw a Puppet::DevError with the specified message. Used for unknown or internal application failures.
12 13 14 |
# File 'lib/puppet/util/errors.rb', line 12 def devfail(msg) self.fail(Puppet::DevError, msg) end |