System.SysUtils.EExternal.ExceptionRecord

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

ExceptionRecord: PExceptionRecord platform;

C++

System::TExceptionRecord *ExceptionRecord;

Properties

Type Visibility Source Unit Parent
field public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils EExternal

Description

ExceptionRecord stores the external error information.

ExceptionRecord is a member of Exception, containing information associated with the error that is being thrown.

External exceptions are thrown when the application uses external tools (such as databases, 3rd party libraries, GDI API functions). When an exception needs to be thrown, the 3rd party populates the record with the error information.

See Also