API:System.SysUtils.EHeapException.RaisingException

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RaisingException(P: PExceptionRecord); override;

C++

virtual void __fastcall RaisingException(System::PExceptionRecord P);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils EHeapException

Description

RaisingException prepares the exception information.

System.SysUtils.EHeapException.RaisingException inherits from System.SysUtils.Exception.RaisingException. All content below this line refers to System.SysUtils.Exception.RaisingException.

RaisingException prepares the exception information.

RaisingException is called right before Exception is raised. In the case of an external non-Delphi exception, the method is called soon after the object is created, since the raise condition is already in progress. RaisingException uses the P argument to initialize the stack trace information.

See Also