try: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 22: | Line 22: | ||
'''Description:''' | '''Description:''' | ||
Defines try-catch structure. This is structured exception block. Any thrown exception in try block is caught in catch block. The structured exception block has following | Defines try-catch structure. | ||
This is structured exception block. | |||
Any thrown exception in '''try''' block is caught in [[catch]] block. | |||
The structured exception block has following format: | |||
'''try''' //begin of try-catch block { //block, that can throw exception } | |||
[[catch]] { //block, that processes an exception}. | |||
Exception is described in _exception variable. |
Revision as of 22:58, 29 June 2006
try code
Operand types:
code: Code
Type of returned value:
Compatibility:
Version 2.60 required.
Description:
Defines try-catch structure.
This is structured exception block.
Any thrown exception in try block is caught in catch block.
The structured exception block has following format:
try //begin of try-catch block { //block, that can throw exception }
catch { //block, that processes an exception}.
Exception is described in _exception variable.