summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Exception.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-11-07 13:30:07 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-11-07 13:30:07 +0000
commitdb55fb00e84f8d62f51ad0e84a7ec74df01e2d69 (patch)
tree8a71bde0b16a5bd3924e1573655e554180e9f0a8 /cpp/src/Ice/Exception.cpp
parentFixed a few coding style issues. (diff)
downloadice-db55fb00e84f8d62f51ad0e84a7ec74df01e2d69.tar.bz2
ice-db55fb00e84f8d62f51ad0e84a7ec74df01e2d69.tar.xz
ice-db55fb00e84f8d62f51ad0e84a7ec74df01e2d69.zip
Added FixedProxyException
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r--cpp/src/Ice/Exception.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp
index 6f25a08def5..b090f88b013 100644
--- a/cpp/src/Ice/Exception.cpp
+++ b/cpp/src/Ice/Exception.cpp
@@ -648,3 +648,10 @@ Ice::SecurityException::ice_print(ostream& out) const
out << ":\n" << reason;
}
}
+
+void
+Ice::FixedProxyException::ice_print(ostream& out) const
+{
+ Exception::ice_print(out);
+ out << ":\nfixed proxy exception";
+}