SysUtils.Abort
From RAD Studio VCL Reference
Contents |
Delphi Information
From SysUtils.pas
procedure Abort
Unit: SysUtils
Type: procedure
Visibility: public
C++ Information
From SysUtils.hpp
void __fastcall Abort(void);
Unit: SysUtils
Type: function
Description
Raises a silent exception.
Use Abort to escape from an execution path without reporting an error.
Abort raises a special "silent exception" (EAbort), which operates like any other exception, but does not display an error message to the end user. Abort redirects execution to the end of the last exception block.
See Also
Code Samples