diff options
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 4 |
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__); } } |