===== Try / Catch / EndTry (Statement) =====
==== Format ====
**try**\\
(tab)[[programsyntax|statement(s)]]\\
**catch**\\
(tab)[[programsyntax|statement(s)]]\\
**end try**
==== Description ====
Execute the [[programsyntax|statement(s)]] inside the try. If a runtime error occurs jump to the code in the catch.
==== Example ====
for t = -1 to 1
try
print "9/"+t + "= " + (9/t)
catch
print "division by zero"
end try
next t
will display
9/-1= -9
division by zero
9/1= 9
==== See Also ====
{{page>en:start#Error Handling&noheader}}
==== History ====
|1.0.0.2|New To Version|