diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-05-17 01:02:32 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-05-17 01:02:32 +0000 |
commit | 4223dcb5e90d48657902da8a94ad177b83bd7dfe (patch) | |
tree | bb78fd81e896228e3743c4d90b8636f799b0a182 /cpp/src/Ice/Object.cpp | |
parent | added interceptor test (diff) | |
download | ice-4223dcb5e90d48657902da8a94ad177b83bd7dfe.tar.bz2 ice-4223dcb5e90d48657902da8a94ad177b83bd7dfe.tar.xz ice-4223dcb5e90d48657902da8a94ad177b83bd7dfe.zip |
Split DispatchStatus into dispatch status and reply status (bug #2150)
Diffstat (limited to 'cpp/src/Ice/Object.cpp')
-rw-r--r-- | cpp/src/Ice/Object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp index 18bc62cf633..5295d6033ed 100644 --- a/cpp/src/Ice/Object.cpp +++ b/cpp/src/Ice/Object.cpp @@ -201,7 +201,7 @@ Ice::Object::__dispatch(Incoming& in, const Current& current) if(r.first == r.second) { - return DispatchOperationNotExist; + throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation); } switch(r.first - __all) @@ -225,7 +225,7 @@ Ice::Object::__dispatch(Incoming& in, const Current& current) } assert(false); - return DispatchOperationNotExist; + throw OperationNotExistException(__FILE__, __LINE__, current.id, current.facet, current.operation); } DispatchStatus |