home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH16 / A16172.TXT < prev    next >
Encoding:
Text File  |  1993-10-20  |  408 b   |  8 lines

  1. In addition to being able to throw objects of built-in types, you
  2. can also throw objects of user-defined classes.  You can define
  3. a specific class, called an exception class, to hold the
  4. exception information that you want to pass back to the handler.
  5. Typically, the objects of exception classes are light-weight
  6. and contain just enough information to allow the handler to
  7. recover from the exception.
  8.