Jump to content

SomExceptionValue: Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
{{DISPLAYTITLE:somExceptionValue}}
{{DISPLAYTITLE:somExceptionValue}}
This function gets the value of the exception contained in an Environment structure.  
This function gets the value of the exception contained in an Environment structure.
==Syntax==
==Syntax==
<PRE>
<PRE>
Line 10: Line 10:


==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) : Returns a pointer to the value of the exception contained in the specified Environment structure.  
;rc (somToken):Returns a pointer to the value of the exception contained in the specified Environment structure.


==Remarks==
==Remarks==
Line 23: Line 23:
==Related==
==Related==
===Data Structures ===
===Data Structures ===
* somToken (sombtype.h)  
* somToken (sombtype.h)
* Environment (somcorba.h)  
* Environment (somcorba.h)
===Functions ===
===Functions ===
* [[somExceptionId]]  
* [[somExceptionId]]
* [[somExceptionFree]]  
* [[somExceptionFree]]
* [[somSetException]]  
* [[somSetException]]
* [[somGetGlobalEnvironment]]  
* [[somGetGlobalEnvironment]]
* [[somSetGlobalEnvironment]]
* somSetGlobalEnvironment


[[Category:SOM Kernel]]
[[Category:SOM Kernel]]

Revision as of 23:31, 16 October 2017

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