summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Exception.cpp
diff options
context:
space:
mode:
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