RAD Studio VCL Reference
|
SafeCallException is used for OLE exception handling.
function SafeCallException(ExceptObject: TObject; ExceptAddr: Pointer): HResult; override;
virtual __fastcall HRESULT SafeCallException(TObject * ExceptObject, void * ExceptAddr);
SafeCallException prevents an exception from escaping its scope. Any exceptions raised must also be handled within the method.
The implementation of a safecall method guarantees that no exceptions escape by enclosing the body of the method in an implied exception block.
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|