diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-29 21:02:37 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-29 21:02:37 +0000 |
commit | cc0ddc7270b434a0ba01f918477d1f46f9324ec2 (patch) | |
tree | 718f0c457eedadea0a439bfbc42bf81f6b5122f0 /cpp/src/Ice/Direct.cpp | |
parent | lots of fixes (diff) | |
download | ice-cc0ddc7270b434a0ba01f918477d1f46f9324ec2.tar.bz2 ice-cc0ddc7270b434a0ba01f918477d1f46f9324ec2.tar.xz ice-cc0ddc7270b434a0ba01f918477d1f46f9324ec2.zip |
fixes
Diffstat (limited to 'cpp/src/Ice/Direct.cpp')
-rw-r--r-- | cpp/src/Ice/Direct.cpp | 4 |
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; } } |