Exception: Puppet::Pops::SemanticError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/puppet/pops/semantic_error.rb

Overview

Error that is used to raise an Issue. See Issues.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(issue, semantic = nil, options = {}) ⇒ SemanticError

Returns a new instance of SemanticError.

Parameters:

  • issue (Puppet::Pops::Issues::Issue)

    the issue describing the severity and message

  • semantic (Puppet::Pops::Model::Locatable, nil) (defaults to: nil)

    the expression causing the failure, or nil if unknown

  • options (Hash) (defaults to: {})

    an options hash with Symbol to value mapping - these are the arguments to the issue



14
15
16
17
18
# File 'lib/puppet/pops/semantic_error.rb', line 14

def initialize(issue, semantic = nil, options = {})
  @issue = issue
  @semantic = semantic
  @options = options
end

Instance Attribute Details

#issueObject

Returns the value of attribute issue.



6
7
8
# File 'lib/puppet/pops/semantic_error.rb', line 6

def issue
  @issue
end

#optionsObject

Returns the value of attribute options.



8
9
10
# File 'lib/puppet/pops/semantic_error.rb', line 8

def options
  @options
end

#semanticObject

Returns the value of attribute semantic.



7
8
9
# File 'lib/puppet/pops/semantic_error.rb', line 7

def semantic
  @semantic
end

Instance Method Details

#fileObject



20
21
22
# File 'lib/puppet/pops/semantic_error.rb', line 20

def file
  @options[:file]
end

#lineObject



24
25
26
# File 'lib/puppet/pops/semantic_error.rb', line 24

def line
  @options[:line]
end

#posObject



28
29
30
# File 'lib/puppet/pops/semantic_error.rb', line 28

def pos
  @options[:pos]
end