Close

Relief for ODA Team in Ukraine

Learn more
ODA IFC SDK
sdaiSetErrorHandler Function
Syntax
C++
DAI_EXPORT void sdaiSetErrorHandler(SdaiErrorHandler function);

The Set Error Handler function appends a specified error handling function to the stack of SDAI error handlers. Stack structure assumes that when an error occurs, the most recently appended function is called. If the called function can not handle the error, the control is passed to the next handler function in the stack.

Parameters
Description
function
[in] An error handler function.

This function accepts the error handler function and can be called before the Open Session function call, during the SDAI session, and after the Close Session function fall. To use the system default error handler, pass the NULL handler pointer to the function. It is possible to set more than one error handling function: Just call Set Error Handler function as many times as you want with different error handling functions. These functions will be placed in the stack according to the sequence of Set Error Handler calls. When an error occurs, the error handling function from the top of the stack runs. The Set Error Handler function may cause the sdaiSY_ERR (underlying system error) error.

File: sdai.h

Copyright © 2002-2022. Open Design Alliance All rights reserved.