class OData::AbstractQuery::Errors::ParseQuerySegmentException

Attributes

str[R]

Public Class Methods

new(query, str) click to toggle source
# File lib/o_data/abstract_query/errors.rb, line 19
def initialize(query, str)
  super(query)
  @str = str
end

Public Instance Methods

to_s() click to toggle source
# File lib/o_data/abstract_query/errors.rb, line 24
def to_s
  "Resource not found for the segment '#{@str.to_s}'."
end