Exception: Puppet::Pops::Types::TypeConversionError

Inherits:
Error
  • Object
show all
Defined in:
lib/puppet/pops/types/type_conversion_error.rb

Overview

Raised when a conversion of a value to another type failed.

Instance Attribute Summary

Attributes inherited from Error

#original

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ TypeConversionError

Creates a new instance with a given message

Parameters:

  • message (String)

    The error message describing what failed



11
12
13
# File 'lib/puppet/pops/types/type_conversion_error.rb', line 11

def initialize(message)
  super(message)
end