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

  1. A function declaration without an exception specification is the
  2. general form of exception specification.  It lets the function
  3. throw any exception.  Use an empty exception specification, the
  4. keyword throw followed by an empty list, to prevent a function
  5. from throwing an exception.  Use the third form to specify what
  6. exceptions the function can throw.
  7.