Class TimeoutBQException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.pipecraft.infra.bq.exceptions.BQException
-
- org.pipecraft.infra.bq.exceptions.TransientBQException
-
- org.pipecraft.infra.bq.exceptions.TimeoutBQException
-
- All Implemented Interfaces:
Serializable
public class TimeoutBQException extends TransientBQException
A transient exception indicating that a BQ request timed out (Suitable also for low level socket read timeout)- Author:
- Eyal Schneider
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TimeoutBQException(String msg)ConstructorTimeoutBQException(String msg, Throwable e)ConstructorTimeoutBQException(String msg, Throwable e, BQQuery<?,?> query)ConstructorTimeoutBQException(String msg, BQQuery<?,?> query)Constructor
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TimeoutBQException
public TimeoutBQException(String msg, BQQuery<?,?> query)
Constructor- Parameters:
msg- The error messagequery- The query where the timeout was found
-
TimeoutBQException
public TimeoutBQException(String msg)
Constructor- Parameters:
msg- The error message
-
TimeoutBQException
public TimeoutBQException(String msg, Throwable e, BQQuery<?,?> query)
Constructor- Parameters:
msg- The error messagee- The causequery- The query where the timeout was found
-
-