Sha256: 2da833eb43efcac8a5c14cd939318eb9460d064f9da7e29c3924069347d6a046

Contents?: true

Size: 787 Bytes

Versions: 28

Compression:

Stored size: 787 Bytes

Contents

# frozen_string_literal: true

# Error that is used to raise an Issue. See {Puppet::Pops::Issues}.
#
class Puppet::Pops::SemanticError < RuntimeError
  attr_accessor :issue
  attr_accessor :semantic
  attr_accessor :options

  # @param issue [Puppet::Pops::Issues::Issue] the issue describing the severity and message
  # @param semantic [Puppet::Pops::Model::Locatable, nil] the expression causing the failure, or nil if unknown
  # @param options [Hash] an options hash with Symbol to value mapping - these are the arguments to the issue
  #
  def initialize(issue, semantic = nil, options = {})
    @issue = issue
    @semantic = semantic
    @options = options
  end

  def file
    @options[:file]
  end

  def line
    @options[:line]
  end

  def pos
    @options[:pos]
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
puppet-8.10.0 lib/puppet/pops/semantic_error.rb
puppet-8.10.0-x86-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.10.0-x64-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.10.0-universal-darwin lib/puppet/pops/semantic_error.rb
puppet-8.9.0 lib/puppet/pops/semantic_error.rb
puppet-8.9.0-x86-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.9.0-x64-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.9.0-universal-darwin lib/puppet/pops/semantic_error.rb
puppet-8.8.1 lib/puppet/pops/semantic_error.rb
puppet-8.8.1-x86-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.8.1-x64-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.8.1-universal-darwin lib/puppet/pops/semantic_error.rb
puppet-8.7.0 lib/puppet/pops/semantic_error.rb
puppet-8.7.0-x86-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.7.0-x64-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.7.0-universal-darwin lib/puppet/pops/semantic_error.rb
puppet-8.6.0 lib/puppet/pops/semantic_error.rb
puppet-8.6.0-x86-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.6.0-x64-mingw32 lib/puppet/pops/semantic_error.rb
puppet-8.6.0-universal-darwin lib/puppet/pops/semantic_error.rb