Changes between Version 4 and Version 5 of Try
- Timestamp:
- 05/31/13 13:19:23 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Try
v4 v5 8 8 * catch exception type ignoring actual instance 9 9 * catchAll clause - catch any exceptions not already given 10 11 There can be multiple catch clauses given specifying different exceptions to trap but there can be only one 'catchAll' clause. 12 10 13 11 14 The '''success''' clause is optional and if specified is executed only if no catch clauses … … 26 29 <statements> 27 30 catch <VarName> as <exceptionType> (*1) or 28 catch <exceptionType> (*2) or31 catch <exceptionType> (*2) or 29 32 catch (*3) 30 33 <statements>