Method: Puppet::Pops::Serialization.not_implemented

Defined in:
lib/puppet/pops/serialization.rb

.not_implemented(impl, method_name) ⇒ Object

Raises:

  • (NotImplementedError)


5
6
7
# File 'lib/puppet/pops/serialization.rb', line 5

def self.not_implemented(impl, method_name)
  raise NotImplementedError, "The class #{impl.class.name} should have implemented the method #{method_name}()"
end