I guess you dont want to wrap entire jsl code in if or while condition. instead whenever exception occurs it should skip a block. well, since no goto exist in jsl, if you work through function here is a work around. use a dummy for loop and conditional break inside a function.
for(i=1,i<=1,i++,
bar=12;
break();
bar=15;
);
show(bar);