FMX.Forms.TExceptionEvent

From RAD Studio API Documentation
Jump to: navigation, search

C++

typedef void __fastcall (__closure *TExceptionEvent)(System::TObject* Sender, System::Sysutils::Exception* E);

Properties

Type Visibility Source Unit Parent
typedef public FMX.Forms.hpp FMX.Forms FMX.Forms

Description

TExceptionEvent is the type of event handlers that respond when the application traps an unhandled exception.

The TExceptionEvent type is the type of the OnException event handler.

Sender is the object that receives the event notification. Typically, this is the application object. E is the exception object that represents the exception.

See Also