Changeset 3071 in Sophya


Ignore:
Timestamp:
Sep 10, 2006, 11:46:50 PM (19 years ago)
Author:
ansari
Message:

petite amelioration info exception catche, Reza 10/09/2006

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaProg/PrgUtil/runcxx.cc

    r2617 r3071  
    211211    cerr << " Catched Exception " << (string)typeid(exc).name()
    212212         << " - Msg= " << exc.Msg() << endl;
     213  }
     214  catch (std::exception & sex) {
     215    cerr << " Catched std::exception " << (string)typeid(sex).name()
     216         << " - Msg= " << sex.what() << endl;
    213217  }
    214218  catch (...) {
Note: See TracChangeset for help on using the changeset viewer.