WebSphere Message Broker, Version 8.0.0.7
Operating Systems: AIX, HP-Itanium, Linux, Solaris, Windows, z/OS
See information about the latest product version
See information about the latest product version
cciRethrowLastException
This function re-throws the last exception that has been generated on the current thread. It is used to pass the exception back to the broker for further handling. The function, like a C exit call, does not return to the caller.
Syntax
void cciRethrowLastException(int* returnCode);
Parameters
- returnCode
- The return code from the function (output). The possible return code is CCI_NO_EXCEPTION_EXISTS
Return values
None. If an error occurs, the returnCode parameter indicates the reason for the error.
Example
if (rc == CCI_EXCEPTION) {
cciRethrowLastException(&rc);
}