class Gherkin::UnexpectedEOFException

def initialize(received_token, expected_token_types, _state_comment)

def initialize(received_token, expected_token_types, _state_comment)
  message = "unexpected end of file, expected: #{expected_token_types.join(", ")}"
  super(message, received_token.location)
end