RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
EAbort Class

EAbort is the exception class for errors that should not display an error message dialog box.

Pascal
EAbort = class(Exception);
C++
class EAbort : public Exception;

Use EAbort to raise an exception without displaying an error message in a dialog box. If applications do not trap such "silent" exceptions, the EAbort exception is passed to the HandleException method of the Application object. 

The Abort procedure provides a simple, standard way to raise EAbort. 

 

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