class Puppet::Pops::Types::StringConverter::FormatError

@api private

Public Class Methods

new(type_string, actual, expected) click to toggle source
Calls superclass method
   # File lib/puppet/pops/types/string_converter.rb
15 def initialize(type_string, actual, expected)
16   super "Illegal format '#{actual}' specified for value of #{type_string} type - expected one of the characters '#{expected}'"
17 end