Exception: Puppet::Pops::SemanticError
- Defined in:
- lib/puppet/pops/semantic_error.rb
Overview
Error that is used to raise an Issue. See Issues.
Instance Attribute Summary collapse
-
#issue ⇒ Object
Returns the value of attribute issue.
-
#options ⇒ Object
Returns the value of attribute options.
-
#semantic ⇒ Object
Returns the value of attribute semantic.
Instance Method Summary collapse
- #file ⇒ Object
-
#initialize(issue, semantic = nil, options = {}) ⇒ SemanticError
constructor
A new instance of SemanticError.
- #line ⇒ Object
- #pos ⇒ Object
Constructor Details
#initialize(issue, semantic = nil, options = {}) ⇒ SemanticError
Returns a new instance of SemanticError.
12 13 14 15 16 |
# File 'lib/puppet/pops/semantic_error.rb', line 12 def initialize(issue, semantic=nil, = {}) @issue = issue @semantic = semantic @options = end |
Instance Attribute Details
#issue ⇒ Object
Returns the value of attribute issue.
4 5 6 |
# File 'lib/puppet/pops/semantic_error.rb', line 4 def issue @issue end |
#options ⇒ Object
Returns the value of attribute options.
6 7 8 |
# File 'lib/puppet/pops/semantic_error.rb', line 6 def @options end |
#semantic ⇒ Object
Returns the value of attribute semantic.
5 6 7 |
# File 'lib/puppet/pops/semantic_error.rb', line 5 def semantic @semantic end |
Instance Method Details
#file ⇒ Object
18 19 20 |
# File 'lib/puppet/pops/semantic_error.rb', line 18 def file @options[:file] end |
#line ⇒ Object
22 23 24 |
# File 'lib/puppet/pops/semantic_error.rb', line 22 def line @options[:line] end |
#pos ⇒ Object
26 27 28 |
# File 'lib/puppet/pops/semantic_error.rb', line 26 def pos @options[:pos] end |