Monday, May 25, 2020

Handling Errors and Exceptions in Delphi Applications

Unfortunately, building applications includes coding. Regardless of how carefully you write/debug your program, it will be impossible to imagine every situation that can go wrong. The inexperienced user might, for example, try to open a nonexisting file or input a bad value into a data field.Users make mistakes and we should be prepared to handle/prevent these errors wherever and whenever possible. Errors, Exceptions? An exception is generally an error condition or another event that interrupts the normal flow of execution in an application. Whenever an error results from processing a line of code, Delphi creates (raises) an object descendant from TObject called the exception object. Guarded Blocks An application responds to an exception either by executing some termination code, handling the exception, or both. The way to enable error/exception trapping within a given code, the exception must occur within a guarded block of statements. The general code looks like: try   Ã‚   {guarded block of code} except   Ã‚   on do begin   Ã‚  Ã‚  Ã‚   {exception block-handles SomeException}   Ã‚   end; end; A try / except statement executes the statements in the guarded block of code. If the statements execute without any exceptions being raised, the exception block is ignored, and control is passed to the statement following the end keyword. Example: ... Zero:0; try    dummy: 10 / Zero; except    on EZeroDivide do   Ã‚  Ã‚   MessageDlg(Can not divide by zero!,   Ã‚  Ã‚  Ã‚  Ã‚  Ã‚  Ã‚  Ã‚  Ã‚  Ã‚  Ã‚  Ã‚  Ã‚  Ã‚  Ã‚   mtError, [mbOK], 0) ; end; ... Protecting Resources When a section of code acquires a resource, it is often necessary to ensure that the resource is released again (or you might get a memory leak), regardless of whether the code completes normally or is interrupted by an exception. In this case, the syntax uses finally keyword and looks like: {some code to allocate resources} try   Ã‚   {guarded block of code} finally   Ã‚   {termination blok - code to free resources} end; Example: ... AboutBox:TAboutBox.Create(nil) ; try   Ã‚   AboutBox.ShowModal; finally   Ã‚   AboutBox.Release; end; ... Application.OnException If your application doesnt handle the error that caused the exception, then Delphi will use its default exception handler - it will just pop up a message box. You may consider writing code in the OnException event for TApplication object, in order to trap errors at the application level. Break On Exceptions When building a program with exception handling, you may not want Delphi to break on Exceptions. This is a great feature if you want Delphi to show where an exception has occurred; however, it can be annoying when you test your own exception handling. Few final words The idea of this article is to give you just a quick look at what exceptions are. For further discussion on exception handling, consider On Handling Exceptions in Delphi Exception Handling, using a tool like Delphi Crash / Exception Handling with Bug Reporting and some of the following related articles:

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.