diff options
author | Sunil Shetye | 2018-07-18 15:33:44 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-18 17:07:40 +0530 |
commit | 4d1e8bb193a7315a8fcfe1e09c33befdee660b7d (patch) | |
tree | 360c93b86402e468a69d22fe3187d0809b095587 /js/Branching/GOTO.js | |
parent | bfa780421678e897b17680f3e7c5db72d8ea8375 (diff) | |
download | sci2js-4d1e8bb193a7315a8fcfe1e09c33befdee660b7d.tar.gz sci2js-4d1e8bb193a7315a8fcfe1e09c33befdee660b7d.tar.bz2 sci2js-4d1e8bb193a7315a8fcfe1e09c33befdee660b7d.zip |
add throw after message()
Diffstat (limited to 'js/Branching/GOTO.js')
-rw-r--r-- | js/Branching/GOTO.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/Branching/GOTO.js b/js/Branching/GOTO.js index 2b3370a1..8d660d2f 100644 --- a/js/Branching/GOTO.js +++ b/js/Branching/GOTO.js @@ -41,6 +41,7 @@ function GOTO() { this.tagvis = int(this.tagvis); if (((this.tagvis<1)||(this.tagvis>3))) { message("Tag Visibility must be between 1 and 3"); + throw "user error"; var ok = false; } if (ok) { |