Skip to content

Commit a8cc909

Browse files
committed
Updated dist
1 parent b743a5c commit a8cc909

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

dist/av-core-mini.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/av-core.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9076,7 +9076,7 @@
90769076
*/
90779077
startJob: function(jobConfig, options) {
90789078
if(!jobConfig || !jobConfig.sql) {
9079-
throw 'Please provide the sql to run the job.';
9079+
throw new Error('Please provide the sql to run the job.');
90809080
}
90819081
var data = {
90829082
jobConfig: jobConfig,
@@ -9112,7 +9112,7 @@
91129112
*/
91139113
AV.BigQuery.JobQuery = function(id, className) {
91149114
if(!id) {
9115-
throw 'Please provide the job id.';
9115+
throw new Error('Please provide the job id.');
91169116
}
91179117
this.id = id;
91189118
this.className = className;

dist/av-mini.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/av.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9076,7 +9076,7 @@
90769076
*/
90779077
startJob: function(jobConfig, options) {
90789078
if(!jobConfig || !jobConfig.sql) {
9079-
throw 'Please provide the sql to run the job.';
9079+
throw new Error('Please provide the sql to run the job.');
90809080
}
90819081
var data = {
90829082
jobConfig: jobConfig,
@@ -9112,7 +9112,7 @@
91129112
*/
91139113
AV.BigQuery.JobQuery = function(id, className) {
91149114
if(!id) {
9115-
throw 'Please provide the job id.';
9115+
throw new Error('Please provide the job id.');
91169116
}
91179117
this.id = id;
91189118
this.className = className;

0 commit comments

Comments
 (0)