home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH16 / A16135.TXT < prev    next >
Encoding:
Text File  |  1993-11-23  |  346 b   |  7 lines

  1. In this example, a "catch all" exception handler is declared.  Any
  2. exception which has not already been caught invokes this handler.
  3. The declaration looks like it contains an unspecified argument
  4. list, but it does not.  The ellipsis means that any type of
  5. exception can be caught.  This handler prints a message and
  6. rethrows the exception.
  7.