We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257aa62 commit d17ae24Copy full SHA for d17ae24
pandas_gbq/gbq.py
@@ -393,7 +393,7 @@ def process_http_error(ex):
393
error_message = ex.errors[0]["message"]
394
raise TableCreationError(f"Reason: {error_message}")
395
else:
396
- raise GenericGBQException("Reason: {0}".format(ex))
+ raise GenericGBQException("Reason: {0}".format(ex)) from ex
397
398
def download_table(
399
self,
0 commit comments