Hi,
I’d like to know: is there anyway that I could end or exit the function call when throwing exception like scenario below.
script A.
function A1
try
run command 1
run command 2
run command 3
run command 4
catch
LogError “…”
end try
end function.
script B
try
[“scriptA” A1]
some other function called here.
catch
LogError
end try
For example, the script execute run command 2 and got error. Is there any function that I can put in the catch block so that it could end the [“scriptA” A1], function instead of continue execute run comand 3 and 4, then execute the next function call from script B.
I’m greately appreciated all of your input.
By the way, so sorry for my slumpsy english…
Thanks,