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 982401ba4c3..1beeb8d001c 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -434,7 +434,7 @@ IceDelegateM::Ice::Object::_isA(const string& s) __os->write(s); if (!__out.invoke()) { - throw ::Ice::UserException(__FILE__, __LINE__); + throw ::Ice::UserException(); } bool __ret; __is->read(__ret); @@ -449,7 +449,7 @@ IceDelegateM::Ice::Object::_ping() __os->write("_ping"); if (!__out.invoke()) { - throw ::Ice::UserException(__FILE__, __LINE__); + throw ::Ice::UserException(); } } |