Content deleted Content added
Sharpen category. |
m spelling + minor fixes using AWB |
||
Line 2:
== Catalogue of exception handling syntaxes ==
=== [[BASIC]] ===
ON ERROR GOTO handler
Line 9 ⟶ 8:
PRINT "File opened successfully"
END
handler:
PRINT "File does not exist"
Line 138 ⟶ 137:
if((exception = setjmp(state)) == 0) // try
{
if(/* something
longjmp(state, SOME_EXCEPTION); // throw SOME_EXCEPTION
}
Line 200 ⟶ 199:
(php5powerprogramming: ISBN 0-13-147149-X, page 77)
===[[
<pre>
try
|