summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Direct.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Direct.cpp')
-rw-r--r--cpp/src/Ice/Direct.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/Ice/Direct.cpp b/cpp/src/Ice/Direct.cpp
index dcaf4cb6f28..37230f9d466 100644
--- a/cpp/src/Ice/Direct.cpp
+++ b/cpp/src/Ice/Direct.cpp
@@ -50,6 +50,8 @@ IceInternal::Direct::Direct(const Current& current) :
{
ObjectNotExistException ex(__FILE__, __LINE__);
ex.id = _current.id;
+ ex.facet = _current.facet;
+ ex.operation = _current.operation;
throw ex;
}
@@ -59,7 +61,9 @@ IceInternal::Direct::Direct(const Current& current) :
if(!_facetServant)
{
FacetNotExistException ex(__FILE__, __LINE__);
+ ex.id = _current.id;
ex.facet = _current.facet;
+ ex.operation = _current.operation;
throw ex;
}
}