//Eg10-6.cpp #include using namespace std; void Errhandler(int n)throw(){ try{ if(n==1) throw n; if(n==2) throw "dx"; if(n==3) throw 1.1; } catch(...){cout<<"catch an exception..."<