summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Exception.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2015-03-20 18:18:03 +0100
committerBenoit Foucher <benoit@zeroc.com>2015-03-20 18:18:03 +0100
commitc6133370d229578697c157f94b297dcc593b4a5f (patch)
tree9bbc2e3083338315393109a511e7a65d09dc9ac6 /cpp/src/Ice/Exception.cpp
parentRemove src directory. (diff)
downloadice-c6133370d229578697c157f94b297dcc593b4a5f.tar.bz2
ice-c6133370d229578697c157f94b297dcc593b4a5f.tar.xz
ice-c6133370d229578697c157f94b297dcc593b4a5f.zip
Added iOS support for IceTouch
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r--cpp/src/Ice/Exception.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp
index 2b1015a5d7b..16c3a3addaa 100644
--- a/cpp/src/Ice/Exception.cpp
+++ b/cpp/src/Ice/Exception.cpp
@@ -830,3 +830,12 @@ Ice::ResponseSentException::ice_print(ostream& out) const
Exception::ice_print(out);
out << ":\nresponse sent exception";
}
+
+#ifdef ICE_USE_CFSTREAM
+void
+Ice::CFNetworkException::ice_print(ostream& out) const
+{
+ Exception::ice_print(out);
+ out << ":\nnetwork exception: domain: " << domain << " error: " << error;
+}
+#endif