Exception: Tantiny::IndexWriterBusyError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/tantiny/errors.rb

Instance Method Summary collapse

Constructor Details

#initializeIndexWriterBusyError

Returns a new instance of IndexWriterBusyError.



7
8
9
10
11
12
# File 'lib/tantiny/errors.rb', line 7

def initialize
  msg = "Failed to acquire an index writer. "\
    "Is there an active index with an exclusive writer already?"

  super(msg)
end