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



12
13
14
15
16
# File 'lib/puppet/pops/semantic_error.rb', line 12

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

Instance Attribute Details

#issueObject



4
5
6
# File 'lib/puppet/pops/semantic_error.rb', line 4

def issue
  @issue
end

#optionsObject



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

def options
  @options
end

#semanticObject



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

def semantic
  @semantic
end