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

  1. Exception handling is designed for exceptional circumstances.
  2. However, it is optimized for the normal situation.  This means,
  3. little or no overhead is incurred if an exception does not occur.
  4. Therefore, the execution of a throw point or the associated
  5. exception handler is not guaranteed to be efficient.  But, when
  6. exception handlers are not invoked, overhead is minimal.
  7.