home *** CD-ROM | disk | FTP | other *** search
- ╦class BoundsExcept ╦: public Exception ╦{ ╘// Part 2 public: BoundsExcept╦(){ strcpy╦( (char *)sName╦, "Bounds Exception"╦); } }; long divide╦( long x╦, long y╦) { if (y╦==0╦) { throw( MathExcept╦()); } return (x╦/y╦); } void read╦() { ╘//... ╦if ( ╘/*...*/ ╦) ╘ // something went wrong ╦throw( IOExcept╦()); }