diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-07-17 20:32:03 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-07-17 20:32:03 +0000 |
commit | 040f77adc958ec1cfae0ebb135e1d2f4df33a88b (patch) | |
tree | a65431b6b742c01e7fd0785d7f27ddcb06efea4f /php/src | |
parent | user exception support (diff) | |
download | ice-040f77adc958ec1cfae0ebb135e1d2f4df33a88b.tar.bz2 ice-040f77adc958ec1cfae0ebb135e1d2f4df33a88b.tar.xz ice-040f77adc958ec1cfae0ebb135e1d2f4df33a88b.zip |
bug fix
Diffstat (limited to 'php/src')
-rw-r--r-- | php/src/ice/proxy.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/php/src/ice/proxy.cpp b/php/src/ice/proxy.cpp index 45903c2534b..1647d914037 100644 --- a/php/src/ice/proxy.cpp +++ b/php/src/ice/proxy.cpp @@ -1175,14 +1175,14 @@ Operation::throwException(IceInternal::BasicStream& is TSRMLS_DC) is.skipSlice(); is.read(id); } - // - // Getting here should be impossible: we can get here only if the - // sender has marshaled a sequence of type IDs, none of which we - // have factory for. This means that sender and receiver disagree - // about the Slice definitions they use. - // - throw Ice::UnknownUserException(__FILE__, __LINE__); } + // + // Getting here should be impossible: we can get here only if the + // sender has marshaled a sequence of type IDs, none of which we + // have factory for. This means that sender and receiver disagree + // about the Slice definitions they use. + // + throw Ice::UnknownUserException(__FILE__, __LINE__); } Proxy::Proxy(const Ice::ObjectPrx& proxy, const Slice::ClassDefPtr& cls) : |