class ElasticsearchQueryParser::Grammar::Presenters::Operator::InvalidOperatorString

Public Class Methods

new(string) click to toggle source
Calls superclass method
# File elasticsearch_query_parser/grammar/presenters/operator.rb, line 9
def initialize(string)
  @string = string
  super
end

Public Instance Methods

message() click to toggle source
# File elasticsearch_query_parser/grammar/presenters/operator.rb, line 14
def message
  "Invalid operator: #{string}"
end