Gemfire JavaDocs_test
Package org.apache.geode.cache.query
Class CqException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.geode.GemFireCheckedException
-
- org.apache.geode.cache.query.QueryException
-
- org.apache.geode.cache.query.CqException
-
- All Implemented Interfaces:
java.io.Serializable
public class CqException extends QueryException
Thrown during continuous query creation, execution time.- Since:
- GemFire 5.5
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CqException(java.lang.String msg)
Constructor used by concrete subclassesCqException(java.lang.String msg, java.lang.Throwable cause)
Constructor used by concrete subclassesCqException(java.lang.Throwable cause)
Constructor used by concrete subclasses
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireCheckedException
getRootCause
-
-
-
-
Constructor Detail
-
CqException
public CqException(java.lang.String msg, java.lang.Throwable cause)
Constructor used by concrete subclasses- Parameters:
msg
- the error messagecause
- a Throwable cause of this exception
-
CqException
public CqException(java.lang.String msg)
Constructor used by concrete subclasses- Parameters:
msg
- the error message
-
CqException
public CqException(java.lang.Throwable cause)
Constructor used by concrete subclasses- Parameters:
cause
- a Throwable cause of this exception
-
-