// Abnormal handling // write by swords 2005/3/15
#include
Void main () {cout << "start" << endl; try {cout << "INSIDE TRY BLOCK." << Endl; throw 200; cout << "this will not execute.";} catch (INT i) {COUT << "Catch An ExecEption - Value IS:" << i << Endl;} Cout << "end!";