public class BigQueryJdbcException extends SQLExceptionConstructors
BigQueryJdbcException(BigQueryException ex)
public BigQueryJdbcException(BigQueryException ex)Constructs a new BigQueryJdbcException from BigQueryException
| Parameter | |
|---|---|
| Name | Description |
ex |
BigQueryExceptionThe BigQueryException to be thrown. |
BigQueryJdbcException(InterruptedException ex)
public BigQueryJdbcException(InterruptedException ex)Constructs a new BigQueryJdbcException from InterruptedException
| Parameter | |
|---|---|
| Name | Description |
ex |
InterruptedExceptionThe InterruptedException to be thrown. |
BigQueryJdbcException(String message)
public BigQueryJdbcException(String message)Constructs a new BigQueryJdbcException with the given message.
| Parameter | |
|---|---|
| Name | Description |
message |
StringThe detail message. |
BigQueryJdbcException(String message, Throwable cause)
public BigQueryJdbcException(String message, Throwable cause)Construct a new BigQueryJdbcException with the cause.
| Parameters | |
|---|---|
| Name | Description |
message |
StringSpecific message that is being added to the Exception. |
cause |
ThrowableThrowable that is being converted. |
BigQueryJdbcException(Throwable cause)
public BigQueryJdbcException(Throwable cause)Constructs a new BigQueryJdbcException with the specified cause and a detail message of (cause==null ? null : cause.toString())
| Parameter | |
|---|---|
| Name | Description |
cause |
ThrowableThrowable that is being converted. |
Methods
getBigQueryException()
public BigQueryException getBigQueryException()| Returns | |
|---|---|
| Type | Description |
BigQueryException |
|