[omniORB] unknown exception

Ilinykh, Andre AIlinykh@SECTORBASE.COM
Mon, 20 Nov 2000 15:15:36 -0800


Hi!
My question is about "unknown exception". Every sample in omniORB hase code
like that:

try{
	//do something
}
catch(CORBA::SystemException& se) {

        int i;

    cerr << "Caught a CORBA::SystemException. " << se._NP_repoId(&i)<< endl;

 

  }

  catch(CORBA::Exception&) {

    cerr << "Caught CORBA::Exception." << endl;

  }

  catch(omniORB::fatalException& fe) {

    cerr << "Caught omniORB::fatalException:" << endl;

    cerr << "  file: " << fe.file() << endl;

    cerr << "  line: " << fe.line() << endl;

    cerr << "  mesg: " << fe.errmsg() << endl;

  }

  catch(...) {

    cerr << "Caught unknown exception." << endl;

  } 

I catch unknown (...) exception here. What it can be? I used omniORB 2.8 for
Windows NT.
Thank you,
  Andrey