Help


from Wikipedia
« »  
Syntactically, ' try ' statements look like ' if ' statements: ' try ', followed by a statement or block, followed by ' else ' and another statement or block.
Additional ' else ' clauses may follow the first.
During execution, if any recoverable termination occurs in the code following the ' try ' clause, the stack is cut back if required, and control branches to the code following the first ' else '.
In addition, attributes are set to allow the program to determine what happened and where ( including the specific line number ).

2.154 seconds.