Package org.apache.lucene.index
Class StaleReaderException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.lucene.index.StaleReaderException
-
- All Implemented Interfaces:
Serializable
public class StaleReaderException extends IOException
This exception is thrown when anIndexReader
tries to make changes to the index (viaIndexReader.deleteDocument(int)
,IndexReader.undeleteAll()
orIndexReader.setNorm(int, java.lang.String, byte)
) but changes have already been committed to the index since this reader was instantiated. When this happens you must open a new reader on the current index to make the changes.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StaleReaderException(String message)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
StaleReaderException
public StaleReaderException(String message)
-
-