Sha256: f965478c43fb6299c547fead8ea2af9aabef43735238271b4601f2cb8efa2b0c

Contents?: true

Size: 798 Bytes

Versions: 20

Compression:

Stored size: 798 Bytes

Contents

# frozen_string_literal: true

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

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.3.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.3.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.3.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.3.0-universal-darwin lib/puppet/pops/types/type_assertion_error.rb
puppet-8.3.1 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.3.1-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.3.1-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.3.1-universal-darwin lib/puppet/pops/types/type_assertion_error.rb
puppet-8.2.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.2.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.2.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.2.0-universal-darwin lib/puppet/pops/types/type_assertion_error.rb
puppet-8.1.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.1.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.1.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.1.0-universal-darwin lib/puppet/pops/types/type_assertion_error.rb
puppet-8.0.1 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.0.1-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.0.1-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-8.0.1-universal-darwin lib/puppet/pops/types/type_assertion_error.rb