home *** CD-ROM | disk | FTP | other *** search
- Listing 30.6[em]LST30_6.TXT: Using the finally program block.
- try
- {
- // The code that may generate an exception goes here.
- }
- catch (Exception e)
- {
- // The code that handles the exception goes here.
- }
- finally
- {
- // The code here is executed after the try or
- // catch blocks finish executing.
- }
-
-