Exception: Gherkin3::CompositeParserException
- Inherits:
-
ParserError
- Object
- StandardError
- ParserError
- Gherkin3::CompositeParserException
- Defined in:
- lib/gherkin3/errors.rb
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
Instance Method Summary collapse
-
#initialize(errors) ⇒ CompositeParserException
constructor
A new instance of CompositeParserException.
Constructor Details
#initialize(errors) ⇒ CompositeParserException
Returns a new instance of CompositeParserException.
24 25 26 27 |
# File 'lib/gherkin3/errors.rb', line 24 def initialize(errors) @errors = errors super "Parser errors:\n" + errors.map(&:message).join("\n") end |
Instance Attribute Details
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
22 23 24 |
# File 'lib/gherkin3/errors.rb', line 22 def errors @errors end |