//Eg10-5.cpp #include using namespace std; void handler(int n)throw(int,char,double){ if(n==1) throw n; if(n==2) throw 'x'; if(n==3) throw 1.1; } int main(){ cout<<"Before handler..."<