| 329 | } |
| 330 | |
| 331 | int ACE_TMAIN(int argc, ACE_TCHAR* argv[]) |
| 332 | { |
| 333 | try { |
| 334 | return run(argc, argv); |
| 335 | } catch (const CORBA::Exception& e) { // IDL-to-C++ classic sequences |
| 336 | e._tao_print_exception("RtpsRelayControl.cpp run():", stderr); |
| 337 | } catch (const std::exception& e) { |
| 338 | ACE_ERROR((LM_ERROR, "ERROR: exception thrown from run(): %C\n", e.what())); |
| 339 | } catch (...) { |
| 340 | ACE_ERROR((LM_ERROR, "ERROR: unknown exception thrown from run()\n")); |
| 341 | } |
| 342 | return EXIT_FAILURE; |
| 343 | } |
nothing calls this directly
no test coverage detected