System.TExceptionRecord
Delphi
TExceptionRecord = record
C++
struct DECLSPEC_DRECORD TExceptionRecord
{
public:
unsigned ExceptionCode;
unsigned ExceptionFlags;
PExceptionRecord ExceptionRecord;
void *ExceptionAddress;
unsigned NumberParameters;
public:
union
{
struct
{
void *ExceptAddr;
void *ExceptObject;
};
struct
{
#ifndef _WIN64
System::StaticArray<unsigned, 15> ExceptionInformation;
#else /* _WIN64 */
System::StaticArray<unsigned __int64, 15> ExceptionInformation;
#endif /* _WIN64 */
};
};
};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
record struct |
public | System.pas System.hpp |
System | System |
Description
Exception information.
TExceptionRecord contains information about an exception constructed with SEH.
The members of TExceptionRecord are listed in the following table:
ExceptionCode | Exception cause. Example: EXCEPTION_INT_OVERFLOW. |
ExceptionFlags | Flags: none or EXCEPTION_NONCONTINUABLE. |
ExceptionRecord | Pointer to TExceptionRecord. Nested exceptions can be constructed. |
ExceptionAddress | Address where exception is constructed. |
NumberParameters | Number of elements of the ExceptionInformation array. |
ExceptionInformation | Additional information: an array of parameters. |