Sha256: 4841b41b862bf8b8bb80fd83908b39f1eb55461aae17cd42a966e0a6b6b6d848

Contents?: true

Size: 767 Bytes

Versions: 21

Compression:

Stored size: 767 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

21 entries across 21 versions & 1 rubygems

Version Path
puppet-4.2.3 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.3-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.3-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.2 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.2-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.2-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.1 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.1-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.1-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.2.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.1.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.1.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.1.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.0.0 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.0.0-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.0.0-x64-mingw32 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.0.0.rc1 lib/puppet/pops/types/type_assertion_error.rb
puppet-4.0.0.rc1-x86-mingw32 lib/puppet/pops/types/type_assertion_error.rb