System.ErrorAddr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

ErrorAddr: Pointer = nil; { Address of run-time error }

C++

extern DELPHI_PACKAGE void *ErrorAddr;

Properties

Type Visibility Source Unit Parent
variable public
System.pas
System.hpp
System System

Description

Contains the address of a statement causing a run-time error.

If a program terminates normally or stops due to a call to Halt, ErrorAddr is nil (Delphi) or NULL (C++). If a program ends because of a run-time error, ErrorAddr contains the address of the statement in error.

See Also