Sha256: d7f568186ee382092f271e51fb2404eb1680fbe87aa46b09116ce1ef01e12860

Contents?: true

Size: 768 Bytes

Versions: 658

Compression:

Stored size: 768 Bytes

Contents

module Puppet::Pops::Types
  # Raised when an assertion of actual type against an expected type fails.
  #
  class TypeAssertionError < Puppet::Error

    # Returns the expected type
    # @return [PAnyType] expected type
    attr_reader :expected_type

    # Returns the actual type
    # @return [PAnyType] actual type
    attr_reader :actual_type

    # Creates a new instance with a default message, expected, and actual types,
    #
    # @param message [String] The default message
    # @param expected_type [PAnyType] The expected type
    # @param actual_type [PAnyType] The actual type
    #
    def initialize(message, expected_type, actual_type)
      super(message)
      @expected_type = expected_type
      @actual_type = actual_type
    end
  end
end

Version data entries

658 entries across 658 versions & 3 rubygems

Version Path
puppet-7.34.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.34.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.34.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.34.0-universal-darwin lib/puppet/pops/types/type_assertion_error.rb
puppet-7.33.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.33.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.33.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.33.0-universal-darwin lib/puppet/pops/types/type_assertion_error.rb
puppet-7.32.1 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.32.1-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.32.1-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.32.1-universal-darwin lib/puppet/pops/types/type_assertion_error.rb
puppet-7.31.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.31.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.31.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.31.0-universal-darwin lib/puppet/pops/types/type_assertion_error.rb
puppet-7.30.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.30.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.30.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-7.30.0-universal-darwin lib/puppet/pops/types/type_assertion_error.rb