summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/Util.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-02-16 21:19:13 +0000
committerBernard Normier <bernard@zeroc.com>2007-02-16 21:19:13 +0000
commit7b5360ff74ff2375ca934e76a8b4c840c1c5565d (patch)
treecf211fb26f29617d9da2ee12b2311a9f348918ce /py/modules/IcePy/Util.cpp
parentRemove *.config files frmo BV/C# Remove all windows project files (diff)
downloadice-7b5360ff74ff2375ca934e76a8b4c840c1c5565d.tar.bz2
ice-7b5360ff74ff2375ca934e76a8b4c840c1c5565d.tar.xz
ice-7b5360ff74ff2375ca934e76a8b4c840c1c5565d.zip
ImplicitContext updates
Diffstat (limited to 'py/modules/IcePy/Util.cpp')
-rw-r--r--py/modules/IcePy/Util.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/py/modules/IcePy/Util.cpp b/py/modules/IcePy/Util.cpp
index ed83b319373..7476f8f2c5c 100644
--- a/py/modules/IcePy/Util.cpp
+++ b/py/modules/IcePy/Util.cpp
@@ -646,11 +646,6 @@ convertLocalException(const Ice::LocalException& ex, PyObject* p)
IcePy::PyObjectHandle m = PyString_FromString(const_cast<char*>(e.unsupportedFeature.c_str()));
PyObject_SetAttrString(p, STRCAST("unsupportedFeature"), m.get());
}
- catch(const Ice::NotSetException& e)
- {
- IcePy::PyObjectHandle m = PyString_FromString(const_cast<char*>(e.key.c_str()));
- PyObject_SetAttrString(p, STRCAST("key"), m.get());
- }
catch(const Ice::SecurityException& e)
{
IcePy::PyObjectHandle m = PyString_FromString(const_cast<char*>(e.reason.c_str()));