Uses of Class
com.google.cloud.bigquery.BigQueryError
-
Packages that use BigQueryError Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of BigQueryError in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return BigQueryError Modifier and Type Method Description BigQueryError
BigQueryException. getError()
Returns theBigQueryError
that caused this exception.BigQueryError
JobStatus. getError()
Returns the final error result of the job.Methods in com.google.cloud.bigquery that return types with arguments of type BigQueryError Modifier and Type Method Description List<BigQueryError>
BigQueryException. getErrors()
Returns a list ofBigQueryError
s that caused this exception.List<BigQueryError>
BigQuerySQLException. getErrors()
Returns a list ofBigQueryError
s that caused this exception.List<BigQueryError>
JobException. getErrors()
The errors reported by the job.List<BigQueryError>
InsertAllResponse. getErrorsFor(long index)
Returns errors for the provided row index.List<BigQueryError>
JobStatus. getExecutionErrors()
Returns all errors encountered during the running of the job.Map<Long,List<BigQueryError>>
InsertAllResponse. getInsertErrors()
Returns all insertion errors as a map whose keys are indexes of rows that failed to insert.Constructors in com.google.cloud.bigquery with parameters of type BigQueryError Constructor Description BigQueryException(int code, String message, BigQueryError error)
Constructor parameters in com.google.cloud.bigquery with type arguments of type BigQueryError Constructor Description BigQueryException(List<BigQueryError> errors)
BigQuerySQLException(String reason, String sqlState, int errorCode, Throwable cause, List<BigQueryError> errors)
BigQuerySQLException(String reason, String sqlState, int errorCode, List<BigQueryError> errors)
BigQuerySQLException(String reason, String sqlState, List<BigQueryError> errors)
BigQuerySQLException(String reason, Throwable cause, List<BigQueryError> errors)
BigQuerySQLException(String reason, List<BigQueryError> errors)
BigQuerySQLException(List<BigQueryError> errors)
BigQuerySQLException(List<BigQueryError> errors, Throwable cause)
-