Learn About delphivcl.Abort Function
April 3, 2021
DelphiVCL.Abort function is used to raise a silent exception.
We 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.
Let’s browse…