Changeset 1276 in Sophya for trunk/SophyaPI/PIext/pistdimgapp.cc


Ignore:
Timestamp:
Nov 2, 2000, 11:18:50 AM (25 years ago)
Author:
ercodmgr
Message:

Amelioration de la syntaxe de l'interpreteur, gestion de quotes, ligne suite
Commande linkff2 (2eme groupe de link, pour utilisation par CxxExecutor
Amelioration de la gestion de TMPDIR

Reza 2/11/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/pistdimgapp.cc

    r1265 r1276  
    391391    mCmd->Interpret(s);
    392392    } 
    393   catch ( PThrowable exc ) {
     393  catch ( PThrowable & exc ) {
     394    cerr << "\n PIStdImgApp::Process()/ Cmd->Interpret() Exception :"
     395         << (string)typeid(exc).name() << " Msg= "
     396         << exc.Msg() << endl;
    394397    cout << endl;
    395     cerr << endl;
    396     cerr << "PIStdImgApp::Process()/ Cmd->Interpret() Exception :" << exc.Msg() << endl;
    397   }
     398  }
     399  catch ( ... ) {
     400    cerr << "\n PIStdImgApp::Process()/ Cmd->Interpret() Catched Exception ..."
     401         << endl;
     402    cout << endl;
     403  }
     404
    398405#endif
    399406  SetReady();
Note: See TracChangeset for help on using the changeset viewer.