Package com.google.cloud.bigquery
Class JobException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.google.cloud.bigquery.JobException
-
- All Implemented Interfaces:
Serializable
public class JobException extends RuntimeException
Exception describing a failure of a job.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BigQueryError>
getErrors()
The errors reported by the job.JobId
getId()
The ID for the failed job.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getId
public JobId getId()
The ID for the failed job.
-
getErrors
public List<BigQueryError> getErrors()
The errors reported by the job.The list is immutable.
-
-