Package org.apache.lucene.index
Class CheckIndex.CheckIndexException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.lucene.index.CheckIndex.CheckIndexException
- All Implemented Interfaces:
Serializable
- Enclosing class:
- CheckIndex
The marker RuntimeException used by CheckIndex APIs when index integrity failure is detected.
- See Also:
-
Constructor Summary
ConstructorDescriptionCheckIndexException
(String message) Constructs a new CheckIndexException with the error messageCheckIndexException
(String message, Throwable cause) Constructs a new CheckIndexException with the error message, and the root cause -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CheckIndexException
Constructs a new CheckIndexException with the error message- Parameters:
message
- the detailed error message.
-
CheckIndexException
Constructs a new CheckIndexException with the error message, and the root cause- Parameters:
message
- the detailed error message.cause
- the underlying cause.
-