class ThinkingSphinx::Search::StaleIdsException
Attributes
ids[R]
Public Class Methods
new(ids)
click to toggle source
# File lib/thinking_sphinx/search/stale_ids_exception.rb, line 4 def initialize(ids) @ids = ids end
Public Instance Methods
message()
click to toggle source
# File lib/thinking_sphinx/search/stale_ids_exception.rb, line 8 def message "Record IDs found by Sphinx but not by ActiveRecord : #{ids.join(', ')}" end