home *** CD-ROM | disk | FTP | other *** search
- // Get needed include files
- #include <eh.h>
- #include <stdlib.h>
- #include <iostream.h>
-
- void MyTerminate()
- {
- cout << "I regret to inform you that the exception could "
- << "not be dispatched.\n";
- cout << "I'm going away now...\n";
- exit(-1);
- }
-
- void main()
- {
- set_terminate(MyTerminate);
- try {
- throw "Won't somebody catch me?";
- }
- catch (int) { }
- }
-