summaryrefslogtreecommitdiff
path: root/cpp/src/IceXML/StreamI.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2002-10-01 03:15:11 +0000
committerBenoit Foucher <benoit@zeroc.com>2002-10-01 03:15:11 +0000
commitbfb305ce183f070aa793657cb72a5ae5460044ae (patch)
treebdcd2b9e31da0b036a135e114e1c9724a37a1290 /cpp/src/IceXML/StreamI.cpp
parentfix (diff)
downloadice-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.cpp4
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;
}
}