class Gherkin::CompositeParserException

Attributes

errors[R]

Public Class Methods

new(errors) click to toggle source
Calls superclass method
# File lib/gherkin/errors.rb, line 24
def initialize(errors)
  @errors = errors
  super "Parser errors:\n" + errors.map(&:message).join("\n")
end