Class NonTransientBQException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.pipecraft.infra.bq.exceptions.BQException
-
- org.pipecraft.infra.bq.exceptions.NonTransientBQException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ClientTooManyRowsBQException,InvalidExportBQException,InvalidQueryBQException,InvalidTableLoadBQException,ServerResourcesBQException,ServerTooManyRowsBQException
public class NonTransientBQException extends BQException
A superclass for BQException indicating a permanent situation, meaning that retries will probably not be helpful.- Author:
- Eyal Schneider
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NonTransientBQException(String msg)ConstructorNonTransientBQException(String msg, Throwable cause)ConstructorNonTransientBQException(String msg, Throwable cause, BQQuery<?,?> query)Constructor To be used for failed query requests only.NonTransientBQException(String msg, BQQuery<?,?> query)Constructor To be used for failed query requests only.NonTransientBQException(Throwable cause, BQQuery<?,?> query)Constructor To be used for failed query requests only.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NonTransientBQException
public NonTransientBQException(String msg)
Constructor- Parameters:
msg- The error message
-
NonTransientBQException
public NonTransientBQException(String msg, Throwable cause)
Constructor- Parameters:
msg- The error messagecause- The original exception
-
NonTransientBQException
public NonTransientBQException(Throwable cause, BQQuery<?,?> query)
Constructor To be used for failed query requests only.- Parameters:
cause- The cause of this exceptionquery- The failed query.
-
NonTransientBQException
public NonTransientBQException(String msg, BQQuery<?,?> query)
Constructor To be used for failed query requests only.- Parameters:
msg- The error messagequery- The failed query
-
-