Gemfire JavaDocs
Package org.apache.geode.cache.query
Class IndexMaintenanceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.cache.CacheRuntimeException
-
- org.apache.geode.cache.query.IndexMaintenanceException
-
- All Implemented Interfaces:
java.io.Serializable
public class IndexMaintenanceException extends CacheRuntimeException
Thrown if an error occurs while updating query indexes during region modification.- Since:
- GemFire 4.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IndexMaintenanceException()
Creates a new instance ofIndexMaintenanceException
without detail message.IndexMaintenanceException(java.lang.String msg)
Constructs an instance ofIndexMaintenanceException
with the specified detail message.IndexMaintenanceException(java.lang.String msg, java.lang.Throwable cause)
Constructs an instance ofIndexMaintenanceException
with the specified detail message and cause.IndexMaintenanceException(java.lang.Throwable cause)
Constructs an instance ofIndexMaintenanceException
with the specified cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.cache.CacheRuntimeException
toString
-
Methods inherited from class org.apache.geode.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
IndexMaintenanceException
public IndexMaintenanceException()
Creates a new instance ofIndexMaintenanceException
without detail message.
-
IndexMaintenanceException
public IndexMaintenanceException(java.lang.String msg)
Constructs an instance ofIndexMaintenanceException
with the specified detail message.- Parameters:
msg
- the detail message.
-
IndexMaintenanceException
public IndexMaintenanceException(java.lang.String msg, java.lang.Throwable cause)
Constructs an instance ofIndexMaintenanceException
with the specified detail message and cause.- Parameters:
msg
- the detail messagecause
- the causal Throwable
-
IndexMaintenanceException
public IndexMaintenanceException(java.lang.Throwable cause)
Constructs an instance ofIndexMaintenanceException
with the specified cause.- Parameters:
cause
- the causal Throwable
-
-