home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH16 / F162911.FLD < prev    next >
Encoding:
Text File  |  1993-08-31  |  2.0 KB  |  1 lines

  1. ╦try {  ╘// ... Something went wrong                                                                ╦throw char( 'a'╦);                                                                         }                                                                                                  catch( char x╦)                                                                                 { cout ╦<< "A char was caught.  Its value is : " ╦<< x╦; }                                catch( long) { cout ╦<< "A long was caught."╦; }                                             catch ( ...) { cout ╦<< "An exception was caught."╦; }