SomExceptionValue: Difference between revisions
Appearance
Created page with "This function gets the value of the exception contained in an Environment structure. ==Syntax== <PRE> Environment *env; somToken rc; rc = somExceptionValue(env);..." |
mNo edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
This function gets the value of the exception contained in an Environment structure. | {{DISPLAYTITLE:somExceptionValue}} | ||
This function gets the value of the exception contained in an Environment structure. | |||
==Syntax== | ==Syntax== | ||
Environment *env; | |||
Environment *env; | somToken rc; | ||
somToken rc; | |||
rc = somExceptionValue(env); | |||
rc = somExceptionValue(env); | |||
==Parameters== | ==Parameters== | ||
; env (Environment *) : A pointer to an Environment structure containing an exception. | ;env (Environment *): A pointer to an Environment structure containing an exception. | ||
==Return Code== | ==Return Code== | ||
; rc (somToken) | ;rc (somToken):Returns a pointer to the value of the exception contained in the specified Environment structure. | ||
==Remarks== | ==Remarks== | ||
Line 18: | Line 18: | ||
==Example Code== | ==Example Code== | ||
See function [[somSetException]]. | See function [[somSetException]]. | ||
==Related== | ==Related== | ||
;Data Structures | |||
* somToken (sombtype.h) | * somToken (sombtype.h) | ||
* Environment (somcorba.h) | * Environment (somcorba.h) | ||
;Functions | |||
* somExceptionId | *[[somExceptionId]] | ||
* somExceptionFree | *[[somExceptionFree]] | ||
* somSetException | *[[somSetException]] | ||
* somGetGlobalEnvironment | *[[somGetGlobalEnvironment]] | ||
* somSetGlobalEnvironment | *somSetGlobalEnvironment | ||
[[Category:SOM | [[Category:SOM function]] |
Latest revision as of 04:26, 6 May 2020
This function gets the value of the exception contained in an Environment structure.
Syntax
Environment *env; somToken rc; rc = somExceptionValue(env);
Parameters
- env (Environment *)
- A pointer to an Environment structure containing an exception.
Return Code
- rc (somToken)
- Returns a pointer to the value of the exception contained in the specified Environment structure.
Remarks
This function returns the value of the exception contained in the specified Environment structure.
Example Code
See function somSetException.
Related
- Data Structures
- somToken (sombtype.h)
- Environment (somcorba.h)
- Functions
- somExceptionId
- somExceptionFree
- somSetException
- somGetGlobalEnvironment
- somSetGlobalEnvironment