diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-05-13 21:40:54 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-05-13 21:40:54 +0000 |
commit | 44fe04db7efd0e56348292e3beaa50fb6ad5c04c (patch) | |
tree | 2edcfd35064e118e004467fd76ae6a2f7ef058f3 /cpp/src/Ice/PluginManagerI.cpp | |
parent | skip error string if error code == 0 (diff) | |
download | ice-44fe04db7efd0e56348292e3beaa50fb6ad5c04c.tar.bz2 ice-44fe04db7efd0e56348292e3beaa50fb6ad5c04c.tar.xz ice-44fe04db7efd0e56348292e3beaa50fb6ad5c04c.zip |
do not translate Exception in entry point
Diffstat (limited to 'cpp/src/Ice/PluginManagerI.cpp')
-rw-r--r-- | cpp/src/Ice/PluginManagerI.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Ice/PluginManagerI.cpp b/cpp/src/Ice/PluginManagerI.cpp index 9d18d2ebfd6..bc84f54f6a4 100644 --- a/cpp/src/Ice/PluginManagerI.cpp +++ b/cpp/src/Ice/PluginManagerI.cpp @@ -168,6 +168,12 @@ Ice::PluginManagerI::loadPlugin(const string& name, const string& entryPoint, co { Error out(_instance->logger()); out << "PluginManager: exception in entry point `" << entryPoint << "': " << ex.ice_name(); + throw; + } + catch (...) + { + Error out(_instance->logger()); + out << "PluginManager: unknown exception in entry point `" << entryPoint << "'"; SystemException e(__FILE__, __LINE__); e.error = 0; throw e; |