RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Forms.TExceptionEvent Type

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

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

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. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!