Class QueryExecutionTimeoutException

All Implemented Interfaces:
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:
  • Constructor Details

    • QueryExecutionTimeoutException

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

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

      public QueryExecutionTimeoutException(String msg, 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(Throwable cause)
      Constructs an instance of QueryExecutionTimeoutException with the specified cause.
      Parameters:
      cause - the causal Throwable