summaryrefslogtreecommitdiff
path: root/cpp/src/IceBox/Exception.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-04-01 20:41:28 +0000
committerMark Spruiell <mes@zeroc.com>2002-04-01 20:41:28 +0000
commitf5452c64777343b5b854629f600e1734ef6f9008 (patch)
treee4a76b4a6214ad9544470031848405acd0bc4197 /cpp/src/IceBox/Exception.cpp
parentadding IceBox (diff)
downloadice-f5452c64777343b5b854629f600e1734ef6f9008.tar.bz2
ice-f5452c64777343b5b854629f600e1734ef6f9008.tar.xz
ice-f5452c64777343b5b854629f600e1734ef6f9008.zip
initial check-in
Diffstat (limited to 'cpp/src/IceBox/Exception.cpp')
-rw-r--r--cpp/src/IceBox/Exception.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/cpp/src/IceBox/Exception.cpp b/cpp/src/IceBox/Exception.cpp
new file mode 100644
index 00000000000..342349c4b1d
--- /dev/null
+++ b/cpp/src/IceBox/Exception.cpp
@@ -0,0 +1,23 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#include <IceBox/IceBox.h>
+#include <Ice/Stream.h>
+
+using namespace std;
+using namespace Ice;
+using namespace IceInternal;
+
+void
+IceBox::ServiceFailureException::ice_print(ostream& out) const
+{
+ Exception::ice_print(out);
+ out << ":\nservice failure exception";
+}