exception 异常处理

1
2
3
4
5
6
try{
xxxx
throw X_Exception("");
}catch(E_Exception &e){
cout<<e.what()<<endl;
}