System.SysUtils.EAbort
Delphi
EAbort = class(Exception);
C++
class PASCALIMPLEMENTATION EAbort : public Exception
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
EAbort is the exception class for errors that should not display an error message dialog box.
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.