diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-10-01 03:15:11 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-10-01 03:15:11 +0000 |
commit | bfb305ce183f070aa793657cb72a5ae5460044ae (patch) | |
tree | bdcd2b9e31da0b036a135e114e1c9724a37a1290 /cpp/src/IceXML/StreamI.cpp | |
parent | fix (diff) | |
download | ice-bfb305ce183f070aa793657cb72a5ae5460044ae.tar.bz2 ice-bfb305ce183f070aa793657cb72a5ae5460044ae.tar.xz ice-bfb305ce183f070aa793657cb72a5ae5460044ae.zip |
Improved few local exceptions and evictor fix.
Diffstat (limited to 'cpp/src/IceXML/StreamI.cpp')
-rw-r--r-- | cpp/src/IceXML/StreamI.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/IceXML/StreamI.cpp b/cpp/src/IceXML/StreamI.cpp index 916a61aaff6..f7060c18b98 100644 --- a/cpp/src/IceXML/StreamI.cpp +++ b/cpp/src/IceXML/StreamI.cpp @@ -1196,7 +1196,9 @@ IceXML::StreamI::readObject(const string& name, const string& signatureType, con if(!value) { - throw ::Ice::NoObjectFactoryException(__FILE__, __LINE__); + ::Ice::NoObjectFactoryException ex(__FILE__, __LINE__); + ex.type = type; + throw ex; } } |