summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Proxy.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-13 14:38:52 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-13 14:38:52 +0000
commitdbb73b11c029b64880c4a1f8bc2bc5eac208869e (patch)
tree771e1eb5328075ac323cf70bc6cf453626f86c26 /cpp/src/Ice/Proxy.cpp
parenterror # in exceptions is now properly set (diff)
downloadice-dbb73b11c029b64880c4a1f8bc2bc5eac208869e.tar.bz2
ice-dbb73b11c029b64880c4a1f8bc2bc5eac208869e.tar.xz
ice-dbb73b11c029b64880c4a1f8bc2bc5eac208869e.zip
more exception cleanup
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r--cpp/src/Ice/Proxy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp
index 1d2ac95ecbb..fdd541f7866 100644
--- a/cpp/src/Ice/Proxy.cpp
+++ b/cpp/src/Ice/Proxy.cpp
@@ -438,7 +438,7 @@ IceDelegateM::Ice::Object::_isA(const string& s)
__os->write(s);
if (!__out.invoke())
{
- throw ::Ice::UserException();
+ throw ::Ice::UnknownUserException(__FILE__, __LINE__);
}
bool __ret;
__is->read(__ret);
@@ -453,7 +453,7 @@ IceDelegateM::Ice::Object::_ping()
__os->write("_ping");
if (!__out.invoke())
{
- throw ::Ice::UserException();
+ throw ::Ice::UnknownUserException(__FILE__, __LINE__);
}
}