Category
Statements, Keyword extensions
Syntax
__try compound-statement handler-list__try __try compound-statement termination-statement
Description
The __try keyword is supported in both C and C++ programs. You can also use try in C++ programs.
A block of code in which an exception can occur must be prefixed by the keyword __try. Following the try keyword is a block of code enclosed by braces. This indicates that the program is prepared to test for the existence of exceptions. If an exception occurs, the normal program flow is interrupted. The program begins a search for a handler that matches the exception. If the exception is generated in a C module, it is possible to handle the structured exception in either a C module or a C++ module.
If a handler can be found for the generated structured exception, the following actions can be taken:
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|