Class QueryTimeoutException

  • All Implemented Interfaces:
    java.io.Serializable

    public class QueryTimeoutException
    extends ServiceException
    Exception representing a timeout error encountered during query execution in Fauna.

    This exception is thrown when a query fails to complete within the specified time limit, indicating that the query timeout was exceeded. Extends ServiceException to provide details specific to query timeout errors.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      QueryTimeoutException​(QueryFailure response)
      Constructs a new QueryTimeoutException with the specified QueryFailure details.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

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

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

      • QueryTimeoutException

        public QueryTimeoutException​(QueryFailure response)
        Constructs a new QueryTimeoutException with the specified QueryFailure details.
        Parameters:
        response - The QueryFailure object containing details about the timeout error.