IBM Integration Bus, Version 10.0.0.2 Operating Systems: AIX, HP-Itanium, Linux, Solaris, Windows, z/OS


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 integration node 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);
    }

as08553_.htm | Last updated 2015-09-24 12:53:21