19c Subj : C++ Exception Handling Problem To : borland.public.cpp.borlandcpp From : AD Date : Mon Jul 26 2004 04:21 pm Hello. The code: f1(){ ... string s; throw xmsg("Error"); ... } f2(){ try{ f1(); } catch(...){} } cased a system run-time error (32 bits). What have I done wrong?? Thanks AD. . 0