Skip to content

Commit 6b55aef

Browse files
committed
fix BigQueryJdbcException method
1 parent 3a4067d commit 6b55aef

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
drivers/**
22
target-it/**
3-
*logs*/**
3+
*logs*/**
4+
**/ITBigQueryJDBCLocalTest.java

java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/exception/BigQueryJdbcException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ public BigQueryJdbcException(InterruptedException ex) {
5050
*
5151
* @param ex The BigQueryException to be thrown.
5252
*/
53-
public BigQueryJdbcException(BigQueryException ex) {
54-
super(ex);
53+
public BigQueryJdbcException(String message, BigQueryException ex) {
54+
super(message, ex);
5555
this.bigQueryException = ex;
5656
LOG.severe(this, ex.getMessage());
5757
}

0 commit comments

Comments
 (0)