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:
java.io.Serializable
- Enclosing class:
- CheckIndex
public static class CheckIndex.CheckIndexException extends java.lang.RuntimeException
The marker RuntimeException used by CheckIndex APIs when index integrity failure is detected.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CheckIndexException(java.lang.String message)
Constructs a new CheckIndexException with the error messageCheckIndexException(java.lang.String message, java.lang.Throwable cause)
Constructs a new CheckIndexException with the error message, and the root cause
-
-
-
Constructor Detail
-
CheckIndexException
public CheckIndexException(java.lang.String message)
Constructs a new CheckIndexException with the error message- Parameters:
message
- the detailed error message.
-
CheckIndexException
public CheckIndexException(java.lang.String message, java.lang.Throwable cause)
Constructs a new CheckIndexException with the error message, and the root cause- Parameters:
message
- the detailed error message.cause
- the underlying cause.
-
-