Vcl.Forms.TExceptionEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TExceptionEvent = procedure (Sender: TObject; E: Exception) of object;

C++

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

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms Vcl.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