Class QueryExecutionTimeoutException

  • All Implemented Interfaces:
    java.io.Serializable

    public class QueryExecutionTimeoutException
    extends CacheRuntimeException
    Thrown when the query execution takes more than the specified max time. The Max query execution time is set using the system variable gemfire.Cache.MAX_QUERY_EXECUTION_TIME.
    Since:
    GemFire 6.0
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      QueryExecutionTimeoutException()
      Creates a new instance of QueryExecutionTimeoutException without detail message.
      QueryExecutionTimeoutException​(java.lang.String msg)
      Constructs an instance of QueryExecutionTimeoutException with the specified detail message.
      QueryExecutionTimeoutException​(java.lang.String msg, java.lang.Throwable cause)
      Constructs an instance of QueryExecutionTimeoutException with the specified detail message and cause.
      QueryExecutionTimeoutException​(java.lang.Throwable cause)
      Constructs an instance of QueryExecutionTimeoutException with the specified cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • QueryExecutionTimeoutException

        public QueryExecutionTimeoutException()
        Creates a new instance of QueryExecutionTimeoutException without detail message.
      • QueryExecutionTimeoutException

        public QueryExecutionTimeoutException​(java.lang.String msg)
        Constructs an instance of QueryExecutionTimeoutException with the specified detail message.
        Parameters:
        msg - the detail message.
      • QueryExecutionTimeoutException

        public QueryExecutionTimeoutException​(java.lang.String msg,
                                              java.lang.Throwable cause)
        Constructs an instance of QueryExecutionTimeoutException with the specified detail message and cause.
        Parameters:
        msg - the detail message
        cause - the causal Throwable
      • QueryExecutionTimeoutException

        public QueryExecutionTimeoutException​(java.lang.Throwable cause)
        Constructs an instance of QueryExecutionTimeoutException with the specified cause.
        Parameters:
        cause - the causal Throwable