diff options
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 3d8239ccb16..982401ba4c3 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -20,7 +20,7 @@ #include <Ice/TraceLevels.h> #include <Ice/Emitter.h> #include <Ice/BasicStream.h> -#include <Ice/LocalException.h> +#include <Ice/Exception.h> #include <Ice/Functional.h> using namespace std; @@ -434,7 +434,7 @@ IceDelegateM::Ice::Object::_isA(const string& s) __os->write(s); if (!__out.invoke()) { - throw ::Ice::UnknownUserException(__FILE__, __LINE__); + throw ::Ice::UserException(__FILE__, __LINE__); } bool __ret; __is->read(__ret); @@ -449,7 +449,7 @@ IceDelegateM::Ice::Object::_ping() __os->write("_ping"); if (!__out.invoke()) { - throw ::Ice::UnknownUserException(__FILE__, __LINE__); + throw ::Ice::UserException(__FILE__, __LINE__); } } |