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

  1.       ╦catch ( MathExcept except╦) {         ╘// Part 4                                                cout ╦<< "A(n) " ╦<< except.Name╦()                                                            << " caught by MathEcept handler." ╦<< endl╦;                                        }                                                                                                  catch ( IOExcept except╦) {                                                                        cout ╦<< "A(n) " ╦<< except.Name╦()                                                            << " caught by IOExcept handler." ╦<< endl╦;                                         }                                                                                                  catch ( Exception except╦)                                                                      {                                                                                                     cout ╦<< "A(n) " ╦<< except.Name╦()                                                            << " caught by Exception handler." ╦<< endl╦;                                        }                                                                                               }                                                                                               }